mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-21 07:56:03 +00:00
93_DbLog: V3.8.8, no exit if configuration couldn't be read
git-svn-id: https://svn.fhem.de/fhem/trunk@16336 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
8c4896e4d5
commit
6a5ce178b3
@ -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: V3.8.8, no exit if configuration couldn't be read
|
||||
- change: 93_DbLog: V3.8.7, no change limits got fron SVG
|
||||
- bugfix: 88_xs1Dev: new type shutter integrated (Forum #85137)
|
||||
- bugfix: 88_xs1Bridge: actuator functions incorrect (Forum #85137)
|
||||
|
@ -16,6 +16,7 @@
|
||||
############################################################################################################################################
|
||||
# Versions History done by DS_Starter & DeeSPe:
|
||||
#
|
||||
# 3.8.8 05.03.2018 fix device doesn't exit if configuration couldn't be read
|
||||
# 3.8.7 28.02.2018 changed DbLog_sampleDataFn - no change limits got fron SVG, commandref revised
|
||||
# 3.8.6 25.02.2018 commandref revised (forum:#84953)
|
||||
# 3.8.5 16.02.2018 changed ParseEvent for Zwave
|
||||
@ -189,7 +190,7 @@ use Blocking;
|
||||
use Time::HiRes qw(gettimeofday tv_interval);
|
||||
use Encode qw(encode_utf8);
|
||||
|
||||
my $DbLogVersion = "3.8.7";
|
||||
my $DbLogVersion = "3.8.8";
|
||||
|
||||
my %columns = ("DEVICE" => 64,
|
||||
"TYPE" => 64,
|
||||
@ -300,7 +301,7 @@ sub DbLog_Define($@)
|
||||
if ($ret) {
|
||||
# return on error while reading configuration
|
||||
Log3($hash->{NAME}, 1, "DbLog $hash->{NAME} - Error while reading $hash->{CONFIGURATION}: '$ret' ");
|
||||
return;
|
||||
return $ret;
|
||||
}
|
||||
|
||||
# set used COLUMNS
|
||||
|
Loading…
x
Reference in New Issue
Block a user