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 {
300300 Add a `triagebot.toml` in the root of the default branch to enable it."
301301 ) ,
302302 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}" )
304304 }
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+ )
307310 }
308311 }
309312 }
Original file line number Diff line number Diff line change @@ -1884,7 +1884,7 @@ impl GithubClient {
18841884 Ok ( res) => res. is_empty ( ) ,
18851885 Err ( e) => {
18861886 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:? }" ,
18881888 repo. full_name
18891889 ) ;
18901890 false
You can’t perform that action at this time.
0 commit comments