From 73098993dcc506ca0bfc7f2d9d6babd27ac57bd6 Mon Sep 17 00:00:00 2001
From: tobiasfaust <>
Date: Fri, 30 Aug 2013 17:28:59 +0000
Subject: [PATCH] DBLog: Schreibfehler in Doku beseitigt
git-svn-id: https://svn.fhem.de/fhem/trunk@3825 2b470e98-0d58-463d-a4d8-8e2adae1ed80
---
fhem/FHEM/93_DbLog.pm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/fhem/FHEM/93_DbLog.pm b/fhem/FHEM/93_DbLog.pm
index c33adb785..12a148ab1 100644
--- a/fhem/FHEM/93_DbLog.pm
+++ b/fhem/FHEM/93_DbLog.pm
@@ -1427,13 +1427,14 @@ sub chartQuery($@) {
A new Attribute DbLogExclude will be propagated
to all Devices if DBLog is used. DbLogExclude will work as regexp to exclude
- defined readings to log. If a MinInterval is set, the logentry is dropped if the
+ defined readings to log. Each individual regexp-group are separated by comma.
+ If a MinInterval is set, the logentry is dropped if the
defined interval is not reached and value vs. lastvalue is eqal .
Example
attr MyDevice1 DbLogExclude .*
- attr MyDevice2 DbLogExclude state (floorplantext|MyUserReading):300,battery:3600
+ attr MyDevice2 DbLogExclude state,(floorplantext|MyUserReading):300,battery:3600
attr MyDevice1 DbLogExclude .*
- attr MyDevice2 DbLogExclude state (floorplantext|MyUserReading):300,battery:3600
+ attr MyDevice2 DbLogExclude state,(floorplantext|MyUserReading):300,battery:3600