File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -300,10 +300,13 @@ impl fmt::Display for ConfigurationError {
300
300
Add a `triagebot.toml` in the root of the default branch to enable it."
301
301
) ,
302
302
ConfigurationError :: Toml ( e) => {
303
- write ! ( f, "Malformed `triagebot.toml` in default branch.\n {}" , e )
303
+ write ! ( f, "Malformed `triagebot.toml` in default branch.\n {e}" )
304
304
}
305
- ConfigurationError :: Http ( _) => {
306
- write ! ( f, "Failed to query configuration for this repository." )
305
+ ConfigurationError :: Http ( e) => {
306
+ write ! (
307
+ f,
308
+ "Failed to query configuration for this repository.\n {e:?}"
309
+ )
307
310
}
308
311
}
309
312
}
Original file line number Diff line number Diff line change @@ -1884,7 +1884,7 @@ impl GithubClient {
1884
1884
Ok ( res) => res. is_empty ( ) ,
1885
1885
Err ( e) => {
1886
1886
log:: warn!(
1887
- "failed to search for user commits in {} for author {author}: {e}" ,
1887
+ "failed to search for user commits in {} for author {author}: {e:? }" ,
1888
1888
repo. full_name
1889
1889
) ;
1890
1890
false
You can’t perform that action at this time.
0 commit comments