Get the Log class out of com.threerings. That's too general a package to be

sticking classes into.
This commit is contained in:
Michael Bayne
2011-10-05 15:51:50 -07:00
parent 6a9ef78d65
commit 07c5207f87
6 changed files with 25 additions and 7 deletions
@@ -0,0 +1,17 @@
//
// ooo-util - a place for OOO utilities
// Copyright (C) 2011 Three Rings Design, Inc., All Rights Reserved
// http://github.com/threerings/ooo-util/blob/master/LICENSE
package com.threerings.servlet.util;
import com.samskivert.util.Logger;
/**
* Contains a reference to the log object used by this package.
*/
public class Log
{
/** We dispatch our log messages through this logger. */
public static Logger log = Logger.getLogger("ooo-servlet-util");
}