Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
49b81a61
Commit
49b81a61
authored
Sep 30, 2004
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug#5824
parent
d7bdb6be
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
ndb/src/mgmclient/CommandInterpreter.cpp
ndb/src/mgmclient/CommandInterpreter.cpp
+6
-4
No files found.
ndb/src/mgmclient/CommandInterpreter.cpp
View file @
49b81a61
...
...
@@ -611,10 +611,12 @@ CommandInterpreter::executeHelp(char* parameters)
<<
endl
;
ndbout
<<
"<category> = "
;
for
(
int
i
=
0
;
i
<
CFG_MIN_LOGLEVEL
;
i
++
){
ndbout
<<
ndb_mgm_get_event_category_string
((
ndb_mgm_event_category
)
i
);
if
(
i
<
CFG_MIN_LOGLEVEL
-
1
)
{
ndbout
<<
" | "
;
for
(
int
i
=
CFG_MIN_LOGLEVEL
;
i
<=
CFG_MAX_LOGLEVEL
;
i
++
){
const
char
*
str
=
ndb_mgm_get_event_category_string
((
ndb_mgm_event_category
)
i
);
if
(
str
)
{
if
(
i
!=
CFG_MIN_LOGLEVEL
)
ndbout
<<
" | "
;
ndbout
<<
str
;
}
}
ndbout
<<
endl
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment