forked from I2P_Developers/i2p.i2p
Util: Change logCloseLoop level to DEBUG
This commit is contained in:
@ -206,20 +206,22 @@ public class Log {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* logs a loop when closing a resource with level INFO
|
* logs a loop when closing a resource with level DEBUG
|
||||||
* This method is for debugging purposes only and
|
* This method is for debugging purposes only and
|
||||||
* as such subject to change or removal w/o notice.
|
* is subject to change or removal w/o notice.
|
||||||
|
* NOT a supported API.
|
||||||
* @param desc vararg description
|
* @param desc vararg description
|
||||||
* @since 0.9.8
|
* @since 0.9.8
|
||||||
*/
|
*/
|
||||||
public void logCloseLoop(Object... desc) {
|
public void logCloseLoop(Object... desc) {
|
||||||
logCloseLoop(Log.INFO, desc);
|
logCloseLoop(Log.DEBUG, desc);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Logs a close loop when closing a resource
|
* Logs a close loop when closing a resource
|
||||||
* This method is for debugging purposes only and
|
* This method is for debugging purposes only and
|
||||||
* as such subject to change or removal w/o notice.
|
* is subject to change or removal w/o notice.
|
||||||
|
* NOT a supported API.
|
||||||
* @param desc vararg description of the resource
|
* @param desc vararg description of the resource
|
||||||
* @param level level at which to log
|
* @param level level at which to log
|
||||||
* @since 0.9.8
|
* @since 0.9.8
|
||||||
|
Reference in New Issue
Block a user