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 has been archived by the owner on Nov 3, 2024. It is now read-only.
I imagine this also applies to the other @logger annotations,
Consider:
public @log4j2 class Cake {
public void doStuff() {
log.debug("Toasters.");
}
}
If you now use IDEA's rename refactoring to rename this class to, say, Biscuits, it alters also the log line to:
Biscuits.log.debug("Toasters");
This isn't invalid, but it adds a bunch of unwanted changes to the code. It'd be nice if it were smart enough to not add this....
The text was updated successfully, but these errors were encountered: