From f920153f163299d3ee99d07307b9af7f16b2041d Mon Sep 17 00:00:00 2001
From: Morris Jobke <hey@morrisjobke.de>
Date: Mon, 24 Oct 2016 15:03:18 +0200
Subject: [PATCH] Throw exception because the logger causes session issues
 anyway that early in the request cycle

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
---
 lib/base.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/base.php b/lib/base.php
index bcb81662c0e..883c1f54b17 100644
--- a/lib/base.php
+++ b/lib/base.php
@@ -626,7 +626,7 @@ class OC {
 		@ini_set('log_errors', 1);
 
 		if(!date_default_timezone_set('UTC')) {
-			\OC::$server->getLogger()->error('Could not set timezone to UTC');
+			throw new \RuntimeException('Could not set timezone to UTC');
 		};
 
 		//try to configure php to enable big file uploads.
-- 
GitLab