configdb: add some debug infos

git-svn-id: https://svn.fhem.de/fhem/trunk@15785 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen
2018-01-05 11:50:18 +00:00
parent 98911b99c7
commit eecd35e42e
2 changed files with 3 additions and 1 deletions

View File

@@ -214,7 +214,7 @@ sub CommandConfigdb($$) {
when ('info') {
Log3('configdb', 4, "info requested.");
$ret = _cfgDB_Info;
$ret = _cfgDB_Info('$Id$');
}
when ('list') {

View File

@@ -903,6 +903,8 @@ sub _cfgDB_Migrate() {
# show database statistics
sub _cfgDB_Info() {
my ($configdb_svnId) = shift;
$configdb_svnId //= 'unknown';
my ($l, @r, $f);
for my $i (1..65){ $l .= '-';}