X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Ftable.c;h=4e34a9ec718ed9e90683981c93eb8a5bbc2c1588;hb=ef07224d5a3e24ccbc71765194d91a8e00ce16fc;hp=b0bc95f80bb90c5f999c525d17aa9d94bbc1d8b7;hpb=20d15cfd26b23508242abcead906207bf26175d0;p=collectd.git diff --git a/src/table.c b/src/table.c index b0bc95f8..4e34a9ec 100644 --- a/src/table.c +++ b/src/table.c @@ -458,7 +458,7 @@ static int tbl_parse_line (tbl_t *tbl, char *line, size_t len) } if (i <= tbl->max_colnum) { - log_err ("Not enough columns in line " + log_warn ("Not enough columns in line " "(expected at least %zu, got %zu).", tbl->max_colnum + 1, i); return -1; @@ -490,11 +490,11 @@ static int tbl_read_table (tbl_t *tbl) while (NULL != fgets (buf, sizeof (buf), fh)) { if ('\0' != buf[sizeof (buf) - 1]) { buf[sizeof (buf) - 1] = '\0'; - log_err ("Table %s: Truncated line: %s", tbl->file, buf); + log_warn ("Table %s: Truncated line: %s", tbl->file, buf); } if (0 != tbl_parse_line (tbl, buf, sizeof (buf))) { - log_err ("Table %s: Failed to parse line: %s", tbl->file, buf); + log_warn ("Table %s: Failed to parse line: %s", tbl->file, buf); continue; } }