Bogofilter adapter for OpenSMTPD in C++
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
301 B

#ifndef _LOG_COMMON_
#define _LOG_COMMON_
namespace log {
using Level = int;
const Level LDEBUG = 50;
const Level DEBUG = 100;
const Level INFO = 200;
const Level WARNING = 300;
const Level ERROR = 400;
const Level CRITICAL = 500;
}
#endif