Return Type | Function name | Arguments |
---|---|---|
hzEcode | threadLog | (const hzChain&,) |
Declared in file: hzProcess.h
Defined in file : hzLogger.cpp
Function Logic:
Function body:
hzEcode threadLog (const hzChain& msg) { hzLogger* plog ; plog = GetThreadLogger() ; if (!plog) { std::cout << msg ; fflush(stdout) ; return E_NOINIT ; } return plog->Log(msg) ; }