Merge pull request #224 from creative-commoners/pulls/3.3/reduce-log-level

FIX Reduce log level so errors do not automatically output
This commit is contained in:
Dylan Wagstaff 2018-06-28 14:47:55 +12:00 committed by GitHub
commit c133a67db6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}
/**