packager: TerminalReporter: stop reporting global cache errors

Summary: At FB we log errors into the error infra, and these errors are not actionnable for end users, so let's reduce the noise generated on the terminal. In the OSS case, people can simply add a handler in a TerminalReporter decorator, the same way we do internally (anyhow, I do not know of anyone using the global cache in OSS for now).

Reviewed By: davidaurelio

Differential Revision: D4762858

fbshipit-source-id: 880c02e175ae551df11b7ce273acc318222c46bf
This commit is contained in:
Jean Lauliac 2017-03-23 12:25:37 -07:00 коммит произвёл Facebook Github Bot
Родитель dcf3cbeb31
Коммит 20ba987139
1 изменённых файлов: 0 добавлений и 4 удалений

Просмотреть файл

@ -148,10 +148,6 @@ class TerminalReporter {
case 'dep_graph_loaded':
terminal.log(`${DEP_GRAPH_MESSAGE}, done.`);
break;
case 'global_cache_error':
const message = JSON.stringify(event.error.message);
reporting.logWarning(terminal, 'the global cache failed: %s', message);
break;
case 'global_cache_disabled':
this._logCacheDisabled(event.reason);
break;