Package nis.svc.ccs.api
Interface ConnectionLog
-
public interface ConnectionLog
Manages logging and logging scopes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectionLog
fail(java.lang.String note, java.lang.Object arg)
Logs a fail with an optional error object.ConnectionLog
info(java.lang.String... info)
Post debug type info to the log.ConnectionLog
open(java.lang.Object scope)
Provides a child log session using the object class name.ConnectionLog
open(java.lang.String name)
Provides a child log session using provided name.ConnectionLog
warn(java.lang.String note)
Post a warning to the log.
-
-
-
Method Detail
-
warn
ConnectionLog warn(java.lang.String note)
Post a warning to the log.- Parameters:
note
-- Returns:
- chain semantics
-
fail
ConnectionLog fail(java.lang.String note, java.lang.Object arg)
Logs a fail with an optional error object.- Parameters:
note
-arg
-- Returns:
- chain semantics
-
info
ConnectionLog info(java.lang.String... info)
Post debug type info to the log.- Parameters:
info
-- Returns:
- chain semantics
-
open
ConnectionLog open(java.lang.String name)
Provides a child log session using provided name.- Parameters:
name
-- Returns:
- a child log session.
-
open
ConnectionLog open(java.lang.Object scope)
Provides a child log session using the object class name.- Parameters:
scope
-- Returns:
- the child log.
-
-