influx-db, commas should be periods (#4222)

Noticed this while looking at psr-2 changes
This commit is contained in:
Tony Murray
2016-08-26 09:37:00 -05:00
committed by Neil Lathwood
parent 15b0cd68ea
commit e2a043125b

View File

@ -82,7 +82,7 @@ function influx_update($device,$measurement,$tags=array(),$fields) {
try {
$result = $influxdb->writePoints($points);
} catch (Exception $e) {
d_echo("Caught exception: ", $e->getMessage(), "\n");
d_echo("Caught exception: " . $e->getMessage() . PHP_EOL);
d_echo($e->getTrace());
}
}