in boot/src/main/java/org/apache/karaf/minho/boot/Minho.java [48:62]
public Minho start() {
// log format
if (System.getProperty("java.util.logging.config.file") == null) {
if (System.getenv("KARAF_LOG_FORMAT") != null) {
System.setProperty("java.util.logging.SimpleFormatter.format", System.getenv("KARAF_LOG_FORMAT"));
}
if (System.getProperty("java.util.logging.SimpleFormatter.format") == null) {
System.setProperty("java.util.logging.SimpleFormatter.format", "%1$tF %1$tT.%1$tN %4$s [ %2$s ] : %5$s%6$s%n");
}
}
(this.loader == null ? loadServices() : this.loader.load()).forEach(serviceRegistry::add);
serviceRegistry.start();
instance = this;
return instance;
}