Skip to content

Commit

Permalink
Merge pull request #2665 from nickanderson/CFE-2141-3.7.x
Browse files Browse the repository at this point in the history
Change: Log level for keeping verbatim JSON to DEBUG
  • Loading branch information
kacf committed Aug 8, 2016
2 parents efd9d31 + c0215cf commit 155e652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libutils/json.c
Original file line number Diff line number Diff line change
Expand Up @@ -1673,7 +1673,7 @@ static JsonParseError JsonParseAsString(const char **data, char **str_out)
* \u{hex digits} - we have no way to represent the
* character they denote. So keep them verbatim, for
* want of any other way to handle them; but warn. */
Log(LOG_LEVEL_WARNING,
Log(LOG_LEVEL_DEBUG,
"Keeping verbatim unrecognised JSON escape '%.6s'",
*data - 1); /* i.e. include the \ in the displayed escape */
WriterWriteChar(writer, '\\');
Expand Down

0 comments on commit 155e652

Please sign in to comment.