Minor Change

Changed DDLogger.logger() to private to guarantee that the logger isn't
being used anywhere in DD, since that could impact performance on
servers.
This commit is contained in:
SenseiKiwi
2014-04-11 20:34:11 -04:00
parent d192dae945
commit a2ef6ef905

View File

@@ -15,7 +15,8 @@ public class DDLogger
this.log.append("Logger started.\n");
}
public static DDLogger logger()
// SenseiKiwi: I changed this to private to guarantee that the logger isn't being used anywhere.
private static DDLogger logger()
{
if( instance == null)
{