printf to stderr

This commit is contained in:
Wolfgang Hottgenroth 2019-10-07 18:47:58 +02:00
parent 985be519e1
commit 95f938e0b5
Signed by: wn
GPG Key ID: 6C1E5E531E0D5D7F

View File

@ -47,7 +47,7 @@ void influxAddFrequency(double f) {
influxSendRequest();
influxInit();
totalEntries += entries;
printf("%u entries sent to database, in total %u\n", entries, totalEntries);
fprintf(stderr, "%u entries sent to database, in total %u\n", entries, totalEntries);
entries = 0;
}