Revert "FS-5567 --resolve add a non-error level informational log message when no files match pattern"

This reverts commit 79d23ec0da.
This commit is contained in:
Nathan Neulinger 2013-07-11 12:24:32 -05:00
parent 79d23ec0da
commit 65dcf18d5f
1 changed files with 0 additions and 2 deletions

View File

@ -1345,8 +1345,6 @@ static FILE *preprocess_glob(const char *cwd, const char *pattern, FILE *write_f
if ( globres != 0) {
if ( !ignore_nomatch || globres != GLOB_NOMATCH ) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Error including %s\n", pattern);
} else if ( ignore_nomatch && globres == GLOB_NOMATCH ) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Include pattern %s did not match any files.\n", pattern);
}
goto end;
}