Add the URL of the wiki for easier troubleshooting
Motivation: When a user sees an error message, sometimes he or she does not know what exactly he or she has to do to fix the problem. Modifications: Log the URL of the wiki pages that might help the user troubleshoot. Result: We are more friendly.
This commit is contained in:
parent
b26ed7d15c
commit
1284842a56
@ -211,11 +211,13 @@ public final class ResourceLeakDetector<T> {
|
||||
logger.error("LEAK: {}.release() was not called before it's garbage-collected. " +
|
||||
"Enable advanced leak reporting to find out where the leak occurred. " +
|
||||
"To enable advanced leak reporting, " +
|
||||
"specify the JVM option '-D{}={}' or call {}.setLevel()",
|
||||
"specify the JVM option '-D{}={}' or call {}.setLevel() " +
|
||||
"See http://netty.io/wiki/reference-counted-objects.html for more information.",
|
||||
resourceType, PROP_LEVEL, Level.ADVANCED.name().toLowerCase(), simpleClassName(this));
|
||||
} else {
|
||||
logger.error(
|
||||
"LEAK: {}.release() was not called before it's garbage-collected.{}",
|
||||
"LEAK: {}.release() was not called before it's garbage-collected. " +
|
||||
"See http://netty.io/wiki/reference-counted-objects.html for more information.{}",
|
||||
resourceType, records);
|
||||
}
|
||||
}
|
||||
@ -299,6 +301,7 @@ public final class ResourceLeakDetector<T> {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
if (creationRecord == null) {
|
||||
return "";
|
||||
|
@ -62,7 +62,8 @@ public final class OpenSsl {
|
||||
cause = t;
|
||||
logger.debug(
|
||||
"Failed to load netty-tcnative; " +
|
||||
OpenSslEngine.class.getSimpleName() + " will be unavailable.", t);
|
||||
OpenSslEngine.class.getSimpleName() + " will be unavailable. " +
|
||||
"See http://netty.io/wiki/forked-tomcat-native.html for more information.", t);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user