Work with both for now until I migrate Yohoho.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5140 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -21,6 +21,7 @@
|
||||
|
||||
package com.threerings.presents.client;
|
||||
|
||||
import com.samskivert.util.Log;
|
||||
import com.samskivert.util.Logger;
|
||||
|
||||
/**
|
||||
@@ -33,18 +34,33 @@ public class LoggingListener
|
||||
* Constructs a listener that will report the supplied error message along with the reason for
|
||||
* failure to the supplied log object.
|
||||
*/
|
||||
public LoggingListener (Logger log, String errmsg)
|
||||
public LoggingListener (Log log, String errmsg)
|
||||
{
|
||||
_log = log;
|
||||
_errmsg = errmsg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs a listener that will report the supplied error message along with the reason for
|
||||
* failure to the supplied log object.
|
||||
*/
|
||||
public LoggingListener (Logger log, String errmsg)
|
||||
{
|
||||
_logger = log;
|
||||
_errmsg = errmsg;
|
||||
}
|
||||
|
||||
// documentation inherited from interface
|
||||
public void requestFailed (String reason)
|
||||
{
|
||||
_log.warning(_errmsg + " [reason=" + reason + "].");
|
||||
if (_logger != null) {
|
||||
_logger.warning(_errmsg + " [reason=" + reason + "].");
|
||||
} else {
|
||||
_log.warning(_errmsg + " [reason=" + reason + "].");
|
||||
}
|
||||
}
|
||||
|
||||
protected Logger _log;
|
||||
protected Log _log;
|
||||
protected Logger _logger;
|
||||
protected String _errmsg;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user