SceneMaker / VisualSceneMaker

Visual SceneMaker is an authoring tool for creating interactive presentations aimed to non-programming experts. It supports the modeling of verbal and non-verbal behavior of Virtual Characters and robots. Therefore, it provides users with a graphical interface and a simple scripting language that allows them to create rich and compelling content.
http://scenemaker.dfki.de
Other
18 stars 11 forks source link

KeyRunTimePlugin floods the console with debug messages #227

Closed fnunnari closed 3 years ago

fnunnari commented 3 years ago

When using the KeyConsolePlugin, the console is full of messages. Even the movements of the mouse pointer is logged. This makes the console unusable.

This is a know issue of the https://github.com/kwhat/jnativehook library:

Looks like this should be fixed in v2.2.0, but it is still unreleased.

A suggested solution is to manually set the log level:

Logger logger = Logger.getLogger(GlobalScreen.class.getPackage().getName());
logger.setLevel(Level.WARNING);
logger.setUseParentHandlers(false);