File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -25,19 +25,19 @@ static DASHBOARD_URL: Lazy<Url> =
2525
2626#[ derive( Debug , Error ) ]
2727pub enum SumsClientError {
28- #[ error( "A WebDriver command failed" ) ]
28+ #[ error( "A WebDriver command failed: {0:?} " ) ]
2929 WebDriverCmdError ( #[ from] CmdError ) ,
3030}
3131
3232#[ derive( Debug , Error ) ]
3333pub enum SumsClientNewError {
34- #[ error( "Failed to create new WebDriver session" ) ]
34+ #[ error( "Failed to create new WebDriver session: {0:?} " ) ]
3535 WebDriverNewSessionError ( #[ from] NewSessionError ) ,
3636}
3737
3838#[ derive( Debug , Error ) ]
3939pub enum SumsClientAuthError {
40- #[ error( "A generic error occured (details within SumsClientError) " ) ]
40+ #[ error( "A generic error occured: {0:?} " ) ]
4141 SumsClientError ( #[ from] SumsClientError ) ,
4242
4343 #[ error( "Authentication failed with message {0}" ) ]
@@ -52,7 +52,7 @@ impl From<CmdError> for SumsClientAuthError {
5252
5353#[ derive( Debug , Error ) ]
5454pub enum SumsClientMembersError {
55- #[ error( "A generic error occured (details within SumsClientError) " ) ]
55+ #[ error( "A generic error occured: {0:?} " ) ]
5656 SumsClientError ( #[ from] SumsClientError ) ,
5757
5858 #[ error( "Failed to convert string to integer. Usually means invalid student ID." ) ]
You can’t perform that action at this time.
0 commit comments