소스 검색

SDK
- remove option to set logging level to WARNING as this would disable normal notifications

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10286 75d07b2b-3a1a-0410-a2c5-0572b91ccdca

nor..67 12 년 전
부모
커밋
ab704cb160
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      jme3-core/src/com/jme3/gde/core/scene/ApplicationLogHandler.java

+ 1 - 1
jme3-core/src/com/jme3/gde/core/scene/ApplicationLogHandler.java

@@ -104,7 +104,7 @@ public class ApplicationLogHandler extends Handler implements Callable<JButton>
         levelFine.putValue(Action.SHORT_DESCRIPTION, "Set Fine Logging Level");
         levelInfo.putValue(Action.SHORT_DESCRIPTION, "Set Normal Logging Level");
         levelWarning.putValue(Action.SHORT_DESCRIPTION, "Set Warning Logging Level");
-        io = IOProvider.getDefault().getIO("Application", new Action[]{levelFine, levelInfo, levelWarning});
+        io = IOProvider.getDefault().getIO("Application", new Action[]{levelFine, levelInfo});
         io.setErrSeparated(true);
     }