2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-04 11:26:55 +00:00

98_fhemdebug.pm: fix usage (Forum #127045)

git-svn-id: https://svn.fhem.de/fhem/trunk@25928 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2022-04-06 12:12:33 +00:00
parent 660e4cf59d
commit 7427ffee73

View File

@ -14,7 +14,8 @@ my $main_setReadingsVal;
sub
fhemdebug_Initialize($){
$cmds{"fhemdebug"}{Fn} = "fhemdebug_Fn";
$cmds{"fhemdebug"}{Hlp} = "{enable|disable|status|timerList|utf8check}";
$cmds{"fhemdebug"}{Hlp} =
"{enable | disable | status | timerList | addTimerStacktrace | utf8check}";
}
sub fhemdebug_utf8check($$$$);
@ -83,7 +84,8 @@ fhemdebug_Fn($$)
} else {
return "Usage: fhemdebug {enable | disable | status | ".
"timerList | addTimerStacktrace {0|1} | forceEvents {0|1} }";
"timerList | addTimerStacktrace {0|1} | forceEvents {0|1} | ".
" utf8check }";
}
return;
}