Merge remote-tracking branch 'pastly/issue26703'

This commit is contained in:
David Goulet
2018-07-16 14:44:45 -04:00
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -0,0 +1,3 @@
o Code simplification and refactoring:
- Low log level of "Scheduler type KIST has been enabled" to INFO.
Ticket 26703
+2 -2
View File
@@ -351,8 +351,8 @@ set_scheduler(void)
/* Finally we notice log if we switched schedulers. We use the type in case
* two schedulers share a scheduler object. */
if (old_scheduler_type != the_scheduler->type) {
log_notice(LD_CONFIG, "Scheduler type %s has been enabled.",
get_scheduler_type_string(the_scheduler->type));
log_info(LD_CONFIG, "Scheduler type %s has been enabled.",
get_scheduler_type_string(the_scheduler->type));
}
}