diff options
author | unknown <joreland@mysql.com> | 2004-09-17 08:28:22 +0200 |
---|---|---|
committer | unknown <joreland@mysql.com> | 2004-09-17 08:28:22 +0200 |
commit | 08ffa2988de9cb8e672cc5e9977755ed791e1ea3 (patch) | |
tree | 8a32890b03a3ba43294d197146770ac3226718d7 /ndb/include/debugger | |
parent | 3bfae53babbaeebbcd49c9b699e6fd350b2dc1f7 (diff) | |
download | mariadb-git-08ffa2988de9cb8e672cc5e9977755ed791e1ea3.tar.gz |
Moved event category match functionality into mgmapi
Removed grep introduced bogus mgm call
BitKeeper/deleted/.del-LogLevel.cpp~314a6bada2df40a8:
Delete: ndb/src/common/debugger/LogLevel.cpp
ndb/include/debugger/EventLogger.hpp:
Removed match functionality and put into mgmapi
ndb/include/kernel/LogLevel.hpp:
Update LogLevel
ndb/include/mgmapi/mgmapi_config_parameters.h:
fix parameter
ndb/src/common/debugger/EventLogger.cpp:
Removed match functionality and put into mgmapi
ndb/src/common/debugger/Makefile.am:
removed LogLevel.cpp
ndb/src/cw/cpcd/APIService.cpp:
compiler warning
ndb/src/cw/cpcd/CPCD.cpp:
compiler warning
ndb/src/cw/cpcd/CPCD.hpp:
compiler warning
ndb/src/cw/cpcd/main.cpp:
compiler warning
ndb/src/kernel/blocks/cmvmi/Cmvmi.cpp:
Changed name of config parameter
ndb/src/kernel/vm/Configuration.cpp:
Changed name of config parameter
Diffstat (limited to 'ndb/include/debugger')
-rw-r--r-- | ndb/include/debugger/EventLogger.hpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/ndb/include/debugger/EventLogger.hpp b/ndb/include/debugger/EventLogger.hpp index 36cece6f22a..9a624559d16 100644 --- a/ndb/include/debugger/EventLogger.hpp +++ b/ndb/include/debugger/EventLogger.hpp @@ -34,39 +34,6 @@ public: LogLevel m_logLevel; /** - * Find a category matching the string - * - * @param str string to match. - * @param cat the event category. - * @param exactMatch only do exact matching. - * - * @return TRUE if match is found, then cat is modified - * FALSE if match is not found - */ - static bool matchEventCategory(const char * str, - LogLevel::EventCategory * cat, - bool exactMatch = false); - - /** - * Returns category name or NULL if not found. - * - * @param cat the event category. - * @return category name. - */ - static const char * getEventCategoryName(LogLevel::EventCategory cat); - - /** - * Specifies allowed event categories/log levels. - */ - struct EventCategoryName { - LogLevel::EventCategory category; - const char * name; - }; - - static const EventCategoryName eventCategoryNames[]; - static const Uint32 noOfEventCategoryNames; - - /** * This matrix defines which event should be printed when * * threshold - is in range [0-15] |