You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 13, 2023. It is now read-only.
The ceylon.logging::logger function accepts an argument with type
sharedaliasCategory => Module|Package;
I suggest adding ceylon.language.meta.declaration::ClassDeclaration to the accepted argument types, so a logger can have a class-specific name (as is usual in Java) when created as
Loggerlog = logger(`class`);
inside a class or member class. Not having class-specific names for loggers makes reading the log more difficult: only the module or even package name is rather coarse to get an idea where the log entry was produced.