diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-05-02 16:16:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-02 16:16:28 +0200 |
commit | 2aa108000cd5bb29b7be5d7226185b5c1be59e29 (patch) | |
tree | 46d6e45c3e88bfa46bd868f6120896b2a52a2948 /apps/dav | |
parent | a56ec1062af36c02666277f7f97f6a407a87d1e1 (diff) | |
parent | aff5fe68b31c3663be2a114666650d2f8723a22b (diff) | |
download | nextcloud-server-2aa108000cd5bb29b7be5d7226185b5c1be59e29.tar.gz nextcloud-server-2aa108000cd5bb29b7be5d7226185b5c1be59e29.zip |
Merge pull request #9293 from nextcloud/feature/9166/custom-auditlogfile
option for a seperate audit log file
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/tests/unit/Connector/Sabre/ExceptionLoggerPluginTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/Connector/Sabre/ExceptionLoggerPluginTest.php b/apps/dav/tests/unit/Connector/Sabre/ExceptionLoggerPluginTest.php index c1d48a7ce5d..1de9333207f 100644 --- a/apps/dav/tests/unit/Connector/Sabre/ExceptionLoggerPluginTest.php +++ b/apps/dav/tests/unit/Connector/Sabre/ExceptionLoggerPluginTest.php @@ -69,7 +69,7 @@ class ExceptionLoggerPluginTest extends TestCase { }); $this->server = new Server(); - $this->logger = new TestLogger(Log\File::class, $config); + $this->logger = new TestLogger(new Log\File(\OC::$SERVERROOT.'/data/nextcloud.log', '', $config), $config); $this->plugin = new PluginToTest('unit-test', $this->logger); $this->plugin->initialize($this->server); } |