Bug: 472601 org.eclipse.jetty.util.log.Log.setLog(Logger) fixed

This commit is contained in:
Greg Wilkins 2015-07-16 09:28:42 +10:00
parent c5b36c6353
commit 15c83cf7ce
1 changed files with 6 additions and 0 deletions

View File

@ -209,6 +209,12 @@ public class Log
return LOG;
}
/**
* Set the root logger.
* <p>Not that if any classes have statically obtained their logger instance
* prior to this call, their Logger will not be affected by this call.
* @param log
*/
public static void setLog(Logger log)
{
Log.LOG = log;