00001 #include "ScriptLog.hh" 00002 00003 DEFINE_LOG(script,"script") 00004 00005 void ScriptLog(const std::string str) 00006 { 00007 LOGINFO(script) << str; 00008 } 00009 00010 void ScriptLog(int level, std::string str) 00011 { 00012 LOG(script,(Logging::Level)level) << str; 00013 } 00014 00015
1.4.7