Merge pull request #438 from jpoimboe/no-changed-functions

remove "no changed functions" messages
This commit is contained in:
Seth Jennings 2014-10-01 14:27:04 -05:00
commit b8c582f2ee
1 changed files with 2 additions and 2 deletions

View File

@ -2790,9 +2790,9 @@ int main(int argc, char *argv[])
if (!num_changed && !new_globals_exist) {
if (hooks_exist)
log_normal("no changed functions were found, but hooks exist\n");
log_debug("no changed functions were found, but hooks exist\n");
else {
log_normal("no changed functions were found\n");
log_debug("no changed functions were found\n");
return 3; /* 1 is ERROR, 2 is DIFF_FATAL */
}
}