fix an error message

This commit is contained in:
Tamo 2024-02-08 13:49:27 +01:00 committed by Louis Dureuil
parent cfb3e6b51f
commit 35aa9d5904
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@ enum MyParseError {
#[error(transparent)]
ParseError(#[from] tracing_subscriber::filter::ParseError),
#[error(
"Empty string is not a valid target. If you want to get no logs use `OFF`. Usage: `info`, `info:meilisearch`, or you can write multiple filters in one target: `index_scheduler=info,milli=trace`"
"Empty string is not a valid target. If you want to get no logs use `OFF`. Usage: `info`, `meilisearch=info`, or you can write multiple filters in one target: `index_scheduler=info,milli=trace`"
)]
Example,
}