In SDK, I use ‘Logger’ for my source debugging.
But JMonkeyEngine SDK’s Log Window always display my android device’s logcat.
I`m now testing my source in BasicGame Project not using mobile property by using my PC;
I just want to print PC Logcat…;;
;;;;;?
@normen said:
;;;;;?
I mean,... I usually run project by my android Device. But i want to check something in my Project.
So I set project configuration on default config not Android Device.
But Log window don`t print Logcat from default config(Desktop pc). Log window only print Logcat from Android Device.
The Yellow Box in upper Image show my android device model name and Message.
How can i fix this problem to see Logcat from default config(Desktop pc).
Theres the “output window” for that.
@normen said:
Theres the "output window" for that.
...... No.. i can`t find Logger output in OutputWindow.
this is logger code.
[java]
Logger.getLogger("MYLOGGER").log(Level.ALL, "CreateWorld{0}", Main.class.getName());
[/java]
This is Output Window. right?

redirect your logger to the normal logger, any logging system can do that. or just use the normal java logger.
1 Like
@normen said:
redirect your logger to the normal logger, any logging system can do that. or just use the normal java logger.
thank you for your advise ^^