2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

93_DbLog: 3.10.7, create addLog-event if reading was not found

git-svn-id: https://svn.fhem.de/fhem/trunk@16626 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2018-04-16 22:00:02 +00:00
parent 969d82b6f1
commit 7c992f1e23
2 changed files with 6 additions and 3 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
# Do not insert empty lines here, update check depends on it.
- bugfix: 93_DbLog: 3.10.7, create addLog-event if reading was not found
- bugfix: 73_GardenaSmartBridge: add error trigger for notify sub
- feature: 98_SVG.pm: horizontalLine* added (Forum #86800)
- change: 93_DbLog: verbose level in addlog changed if reading not found

View File

@ -16,6 +16,7 @@
############################################################################################################################################
# Versions History done by DS_Starter & DeeSPe:
#
# 3.10.7 16.04.2018 fix generate addLog-event if device or reading was not found by addLog
# 3.10.6 13.04.2018 verbose level in addlog changed if reading not found
# 3.10.5 12.04.2018 fix warnings
# 3.10.4 11.04.2018 fix addLog if no valueFn is used
@ -202,7 +203,7 @@ use Time::HiRes qw(gettimeofday tv_interval);
use Encode qw(encode_utf8);
no if $] >= 5.017011, warnings => 'experimental::smartmatch';
my $DbLogVersion = "3.10.6";
my $DbLogVersion = "3.10.7";
my %columns = ("DEVICE" => 64,
"TYPE" => 64,
@ -563,6 +564,8 @@ sub DbLog_Set($@) {
map(s/CN=$cn//g, @a);
}
DbLog_AddLog($hash,$a[2],$a[3],$nce,$cn);
my $skip_trigger = 1; # kein Event erzeugen falls addLog device/reading not found aber Abarbeitung erfolgreich
return undef,$skip_trigger;
}
elsif ($a[1] eq 'reopen') {
if ($dbh) {
@ -859,7 +862,6 @@ sub DbLog_Set($@) {
else { $ret = $usage; }
return $ret;
}
###############################################################################################