robotlegs / robotlegs-framework

An ActionScript 3 application framework for Flash and Flex
https://robotlegs.tenderapp.com/
MIT License
967 stars 261 forks source link

setting logLevel on IContext doesn't change the logging level #148

Closed honi closed 11 years ago

honi commented 11 years ago

Maybe I'm doing something wrong, but when setting the logLevel on a context nothing happens.

_context = new Context();
_context.logLevel = LogLevel.INFO;
_context.install(MVCSBundle);
_context.configure(new ContextView(this));

I still see all debug logs. I checked the source and couldn't find anything wrong. Any ideas?

Kalinovych commented 11 years ago

_context.install(MVCSBundle); _context.logLevel = LogLevel.INFO;

Ondina commented 11 years ago

or, see : http://knowledge.robotlegs.org/discussions/robotlegs-2/3964-cant-change-mvcs-bundle-defaults-loglevel#comment_27839518

honi commented 11 years ago

Great, thanks!