From 708eb693a441dbc4a5f3b0e266cf9308fd1d71c1 Mon Sep 17 00:00:00 2001 From: "nor..67" Date: Fri, 1 Feb 2013 03:13:45 +0000 Subject: [PATCH] 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 --- .../src/com/jme3/gde/core/scene/ApplicationLogHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/jme3-core/src/com/jme3/gde/core/scene/ApplicationLogHandler.java b/sdk/jme3-core/src/com/jme3/gde/core/scene/ApplicationLogHandler.java index 725822cd1..d931ec109 100644 --- a/sdk/jme3-core/src/com/jme3/gde/core/scene/ApplicationLogHandler.java +++ b/sdk/jme3-core/src/com/jme3/gde/core/scene/ApplicationLogHandler.java @@ -104,7 +104,7 @@ public class ApplicationLogHandler extends Handler implements Callable 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); }