private static void debug()

in src/main/java/org/apache/commons/crypto/NativeCodeLoader.java [67:74]


    private static void debug(final String format, final Object... args) {
        if (Crypto.IS_DEBUG) {
            System.out.println(String.format(format, args));
            if (args != null && args.length > 0 && args[0] instanceof Throwable) {
                ((Throwable) args[0]).printStackTrace(System.out);
            }
        }
    }