FIX Reduce log level so errors do not automatically output

This commit is contained in:
Guy 2018-06-28 09:56:26 +12:00
parent acf204c1d0
commit fb446b613f
No known key found for this signature in database
GPG Key ID: A80F9ACCB86D3DA7
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@ abstract class SearchIndex extends ViewableData
*/
public static function warn($e)
{
Injector::inst()->get(LoggerInterface::class)->warning($e);
Injector::inst()->get(LoggerInterface::class)->info($e);
}
/**