diff --git a/fhem/contrib/DS_Starter/93_DbLog.pm b/fhem/contrib/DS_Starter/93_DbLog.pm
index 3bc5042b8..fa10466cd 100644
--- a/fhem/contrib/DS_Starter/93_DbLog.pm
+++ b/fhem/contrib/DS_Starter/93_DbLog.pm
@@ -2929,10 +2929,10 @@ sub _DbLog_SBP_onRun_Log {
}
else {
if(defined $rowhref) { # nicht gespeicherte Datensätze ausgeben
- Log3 ($name, 4, "DbLog $name - The following data are faulty and were not saved:");
+ Log3 ($name, 2, "DbLog $name - The following data are faulty and were not saved:");
for my $df (sort {$a <=>$b} keys %{$rowhref}) {
- Log3 ($name, 4, "DbLog $name - $rowhref->{$df}");
+ Log3 ($name, 2, "DbLog $name - $rowhref->{$df}");
}
}
@@ -7951,17 +7951,19 @@ return;
bulkInsert
- attr <device> bulkInsert [1|0]
-
+ attr <device> bulkInsert [1|0]
- Toggles the Insert mode between Array (default) and Bulk. This Bulk insert mode increase the write performance
- into the history table significant in case of plenty of data to insert, especially if asynchronous mode is
- used.
- To get the whole improved performance, the attribute "DbLogType" should not contain the current table
- in this use case.
+ Toggles the insert mode between "Array" and "Bulk".
+ The bulk mode leads to a considerable performance increase when inserting a large number of data records into the
+ history table, especially in asynchronous mode.
+ To get the full performance increase, in this case the attribute "DbLogType" should not contain the
+ current table.
+ In contrast, the "Array" mode has the advantage over "Bulk" that faulty data records are extracted and reported in the
+ log file.
+ (default: 0=Array)
-
+
@@ -9588,16 +9590,18 @@ attr SMA_Energymeter DbLogValueFn
- bulkInsert
- attr <device> bulkInsert [1|0]
-
+ attr <device> bulkInsert [1|0]
- Schaltet den Insert-Modus zwischen "Array" (default) und "Bulk" um. Der Bulk Modus führt beim Insert von sehr
- vielen Datensätzen in die history-Tabelle zu einer erheblichen Performancesteigerung vor allem im asynchronen
- Mode. Um die volle Performancesteigerung zu erhalten, sollte in diesem Fall das Attribut "DbLogType"
- nicht die current-Tabelle enthalten.
+ Schaltet den Insert-Modus zwischen "Array" und "Bulk" um.
+ Der Bulk Modus führt beim Insert von sehr vielen Datensätzen in die history-Tabelle zu einer erheblichen
+ Performancesteigerung vor allem im asynchronen Mode. Um die volle Performancesteigerung zu erhalten, sollte in
+ diesem Fall das Attribut "DbLogType" nicht die current-Tabelle enthalten.
+ Demgegenüber hat der Modus "Array" gegenüber "Bulk" den Vorteil, dass fehlerhafte Datensätze extrahiert und im
+ Logfile reported werden.
+ (default: 0=Array)
-
+