Return TypeFunction nameArguments
hzEcodethreadLog(const hzChain&,)

Declared in file: hzProcess.h
Defined in file : hzLogger.cpp

Function Logic:

0:START 1:GetThreadLogger plog 2:!plog 3:items fflush 4:Return E_NOINIT 5:Return plog->Log(msg)

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) ;
}