public void log()

in src/main/java/org/apache/sling/cta/impl/Log.java [101:103]


        public void log(String msg, Object... args) {
            System.out.format(LOG_ENTRY_PREFIX + msg + " %n", args); // NOSONAR - this is a logger, OK to use System.out
        }