1
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-05-07 22:29:19 +00:00

More verbose update

git-svn-id: https://svn.fhem.de/fhem/trunk@1519 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2012-05-01 16:13:44 +00:00
parent c8212526ba
commit ae7edbb9fe

View File

@ -107,7 +107,8 @@ CommandUpdatefhem($$)
open(FH,">$localfile") || return "Can't write $localfile";
print FH $content;
close(FH);
Log 1, "updated $remfile";
$ret .= "updated $f\n";
Log 1, "updated $f";
}
return "Can't write $moddir/$ftime" if(!open(FH, ">$moddir/$ftime"));
@ -122,6 +123,7 @@ CommandUpdatefhem($$)
}
}
$ret .= "update finished\n";
return $ret;
}