use getLogger() method instead of Logger constructor,
which is now private.
This commit is contained in:
parent
43416e122c
commit
c564b4e55b
1 changed files with 1 additions and 1 deletions
|
@ -272,7 +272,7 @@ import com.sleepycat.db.*;
|
|||
if (hopHome != null && !helper.isAbsolute ())
|
||||
helper = new File (hopHome, logDir);
|
||||
logDir = helper.getAbsolutePath ();
|
||||
logger = new Logger (logDir, "hop");
|
||||
logger = Logger.getLogger (logDir, "hop");
|
||||
} catch (IOException iox) {
|
||||
System.err.println ("Could not create Logger for log/hop: "+iox);
|
||||
// fallback to System.out
|
||||
|
|
Loading…
Add table
Reference in a new issue