diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2005-01-09 23:02:06 +0100 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2005-01-09 23:02:06 +0100 |
commit | 9ec0095e479ba92777e4d7736681adfd0ec48649 (patch) | |
tree | 3dfc4d4dc4d6f3d69cc513d5f6f2712286aacc35 /ndb/include/kernel | |
parent | 3c7b8815c321f546bca0b299b9ecc4bbd4a056c4 (diff) | |
download | mariadb-git-9ec0095e479ba92777e4d7736681adfd0ec48649.tar.gz |
updated ndb_mgm test
removed grep event and added congestion event
more docs
changed some naming, expecially regarding severities
added config param for logevel for congestion
mysql-test/ndb/basic.result:
updated ndb_mgm test
mysql-test/ndb/restart.test:
updated ndb_mgm test
ndb/include/kernel/LogLevel.hpp:
removed grep event and added congestion event
ndb/include/mgmapi/mgmapi.h:
more docs
changed some naming, expecially regarding severities
ndb/include/mgmapi/mgmapi_config_parameters.h:
removed grep event and added congestion event
ndb/src/common/debugger/EventLogger.cpp:
removed grep event and added congestion event
ndb/src/mgmapi/mgmapi.cpp:
changed some naming, expecially regarding severities
ndb/src/mgmsrv/ConfigInfo.cpp:
added config param for logevel for congestion
ndb/src/mgmsrv/Services.cpp:
just som variable name changes
Diffstat (limited to 'ndb/include/kernel')
-rw-r--r-- | ndb/include/kernel/LogLevel.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/include/kernel/LogLevel.hpp b/ndb/include/kernel/LogLevel.hpp index 3c2f349e0e1..382016ee761 100644 --- a/ndb/include/kernel/LogLevel.hpp +++ b/ndb/include/kernel/LogLevel.hpp @@ -57,7 +57,7 @@ public: llInfo = CFG_LOGLEVEL_INFO - CFG_MIN_LOGLEVEL, llWarning = CFG_LOGLEVEL_WARNING - CFG_MIN_LOGLEVEL, llError = CFG_LOGLEVEL_ERROR - CFG_MIN_LOGLEVEL, - llGrep = CFG_LOGLEVEL_GREP - CFG_MIN_LOGLEVEL, + llCongestion = CFG_LOGLEVEL_CONGESTION - CFG_MIN_LOGLEVEL, llDebug = CFG_LOGLEVEL_DEBUG - CFG_MIN_LOGLEVEL ,llBackup = CFG_LOGLEVEL_BACKUP - CFG_MIN_LOGLEVEL }; |