When implementing the new logs in blenderapp i found it is better to make starting the logger a utility function so the developer can control it better.
created apputils.logger for the init function
Made config dict optional, since basic applications can use basic logger with only level passed
renamed entrypoint function to main in entrypoint.py since all those entrypoint.entrypoint's made it confusing
@zakaprov yes, the init_loggingwill be used from other applications.
i'm even looking into updating the golem-core logging with this logic, the base is copied from there.
When implementing the new logs in
blenderapp
i found it is better to make starting the logger a utility function so the developer can control it better.apputils.logger
for the init functionentrypoint
function tomain
inentrypoint.py
since all thoseentrypoint.entrypoint
's made it confusing