00001 /* 00002 * loglevel.h 00003 * semaine 00004 * 00005 * Created by Marc Schröder on 29.08.08. 00006 * Copyright 2008 DFKI GmbH. All rights reserved. 00007 * 00008 */ 00009 00010 #ifndef SEMAINE_CMS_LOGLEVEL_H 00011 #define SEMAINE_CMS_LOGLEVEL_H 00012 00013 #include <string> 00014 00015 const std::string SEMAINE_CMS_LOGLEVEL_ERROR = "error"; 00016 const std::string SEMAINE_CMS_LOGLEVEL_WARN = "warn"; 00017 const std::string SEMAINE_CMS_LOGLEVEL_INFO = "info"; 00018 const std::string SEMAINE_CMS_LOGLEVEL_DEBUG = "debug"; 00019 00020 #endif 00021