* BsonValueToJsonForLogging converts a bson_value structure to an extended json syntax string. */
| 338 | * BsonValueToJsonForLogging converts a bson_value structure to an extended json syntax string. |
| 339 | */ |
| 340 | const char * |
| 341 | BsonValueToJsonForLogging(const bson_value_t *value) |
| 342 | { |
| 343 | bool quoteStrings = true; |
| 344 | return BsonValueToJsonForLoggingCore(value, quoteStrings); |
| 345 | } |
| 346 | |
| 347 | |
| 348 | /* |
no test coverage detected