mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-09 03:18:30 +00:00
Fix a bug with the removal of 'atleast' argument to 'core verbose' and 'core debug'.
Add that argument back in. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@44053 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2138,9 +2138,9 @@ static void ast_remotecontrol(char * data)
|
||||
pid = atoi(cpid);
|
||||
else
|
||||
pid = -1;
|
||||
snprintf(tmp, sizeof(tmp), "core verbose %d", option_verbose);
|
||||
snprintf(tmp, sizeof(tmp), "core verbose atleast %d", option_verbose);
|
||||
fdprint(ast_consock, tmp);
|
||||
snprintf(tmp, sizeof(tmp), "core debug %d", option_debug);
|
||||
snprintf(tmp, sizeof(tmp), "core debug atleast %d", option_debug);
|
||||
fdprint(ast_consock, tmp);
|
||||
if (ast_opt_mute) {
|
||||
snprintf(tmp, sizeof(tmp), "log and verbose output currently muted ('logger unmute' to unmute)");
|
||||
|
||||
Reference in New Issue
Block a user