Ignore:
Timestamp:
Mar 26, 2010, 11:56:50 AM (15 years ago)
Author:
rybkin
Message:

See C.L. 422

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/source/cmt_log.h

    r467 r535  
    6464  static void set_level (const CmtMsgLevel& level);
    6565  static bool active (const CmtMsgLevel& level);
     66  static void verbose (const cmt_string& message);
    6667  static void info (const cmt_string& message);
    6768  static void warning (const cmt_string& message);
     
    118119}
    119120
     121inline void CmtMessage::verbose (const cmt_string& message)
     122{
     123  if (active (Verbose))
     124    cerr << prefix () << " Verbose: " << message << endl;
     125}
     126
    120127inline void CmtMessage::info (const cmt_string& message)
    121128{
Note: See TracChangeset for help on using the changeset viewer.