File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
src/Microsoft.ML.AutoML/AutoMLExperiment Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -284,7 +284,14 @@ void handler(object o, EventArgs e)
284284 }
285285 catch ( Exception ex ) when ( aggregateTrainingStopManager . IsStopTrainingRequested ( ) == false )
286286 {
287- logger . Trace ( $ "catch exception when training trial { trialSettings . TrialId } - { JsonSerializer . Serialize ( trialSettings ) } , continue training") ;
287+ var exceptionMessage = $@ "
288+ Exception thrown during Trial { trialSettings . TrialId } with configuration { JsonSerializer . Serialize ( trialSettings ) }
289+
290+ Exception Details: ex.Message
291+
292+ Abandoning Trial { trialSettings . TrialId } and continue training.
293+ " ;
294+ logger . Trace ( exceptionMessage ) ;
288295 trialSettings . EndedAtUtc = DateTime . UtcNow ;
289296 monitor ? . ReportFailTrial ( trialSettings , ex ) ;
290297 var trialResult = new TrialResult
You can’t perform that action at this time.
0 commit comments