Beispiel #1
0
 /** @return 返回默认日志记录器模块管理器实例对象 */
 public static ILog get() {
   if (__instance == null) {
     synchronized (VERSION) {
       if (__instance == null) {
         __instance = YMP.get().getModule(Logs.class);
       }
     }
   }
   return __instance;
 }