Initial source commit
This commit is contained in:
commit
f1384c11ee
335 changed files with 52715 additions and 0 deletions
32
minorGems/util/log/Log.cpp
Normal file
32
minorGems/util/log/Log.cpp
Normal file
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* Modification History
|
||||
*
|
||||
* 2002-February-25 Jason Rohrer
|
||||
* Created.
|
||||
*/
|
||||
|
||||
|
||||
|
||||
#include "Log.h"
|
||||
|
||||
|
||||
|
||||
const int Log::DEACTIVATE_LEVEL = 0;
|
||||
|
||||
const int Log::CRITICAL_ERROR_LEVEL = 1;
|
||||
|
||||
const int Log::ERROR_LEVEL = 2;
|
||||
|
||||
const int Log::WARNING_LEVEL = 3;
|
||||
|
||||
const int Log::INFO_LEVEL = 4;
|
||||
|
||||
const int Log::DETAIL_LEVEL = 5;
|
||||
|
||||
const int Log::TRACE_LEVEL = 6;
|
||||
|
||||
|
||||
|
||||
Log::~Log() {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue