Contract manager transaction logging.
This module can be used by the server to log individual protocol transactions, if desired. This simple default module uses the Erlang/OTPerror_logger module; we highly recommend that the
sasl application be running to take full advantage of OTP's error
and event handling capabilities.
| eventIn/5 | |
| eventOut/5 | |
| lpcIn/4 | |
| lpcOut/9 | |
| lpcOutError/6 | |
| rpcFinish/1 | |
| rpcIn/4 | |
| rpcOut/9 | |
| rpcOutError/5 | |
| rpcOutError/6 |
eventIn(TLogMod_x, Msg, State, Mod, Status) -> any()
eventOut(TLogMod_x, Msg, State, Mod, Status) -> any()
lpcIn(TLogMod_x, Q, State, Mod) -> any()
lpcOut(TLogMod_x, StartTime, Q, State, Mod, Reply, NewState, NewMod, Status) -> any()
lpcOutError(TLogMod_x, StartTime, Q, State, Mod, Error) -> any()
rpcFinish(TLog) -> any()
rpcIn(TLogMod_x, Q, State, Mod) -> any()
rpcOut(TLogMod_x, StartTime, Q, State, Mod, Reply, NewState, NewMod, Status) -> any()
rpcOutError(TLogMod_x, Q, State, Mod, Error) -> any()
rpcOutError(TLogMod_x, StartTime, Q, State, Mod, Error) -> any()
Generated EDoc, $Id$