print loading/saving dynamic profile messages only in verbose mode (forgot one from previous commit)

This commit is contained in:
Alberto Griggio
2017-03-06 17:56:10 +01:00
parent e8d4378659
commit d40a0c750d

View File

@@ -526,6 +526,8 @@ void DynamicProfilePanel::save()
printf("Error in saving dynamic profile rules\n");
} else {
profileStore.setDynamicProfileRules(rules);
printf("Saved %d dynamic profile rules\n", int(rules.size()));
if (options.rtSettings.verbose) {
printf("Saved %d dynamic profile rules\n", int(rules.size()));
}
}
}