Skip to content

Commit

Permalink
adding error to log message
Browse files Browse the repository at this point in the history
  • Loading branch information
jgowdyelastic committed Nov 6, 2020
1 parent a959ee7 commit d2800ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/ml/server/saved_objects/initialization.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export function jobSavedObjectsInitializationFactory(core: CoreStart) {
const { jobs } = await initSavedObjects();
mlLog.info(`${jobs.length} job saved objects initialized for * space`);
} catch (error) {
mlLog.error('Error Initializing jobs');
mlLog.error(`Error Initializing jobs ${JSON.stringify(error)}`);
}
}

Expand Down

0 comments on commit d2800ab

Please sign in to comment.