diff options
author | Tim Terhorst <mynamewastaken+gitlab@gmail.com> | 2019-10-01 18:27:45 -0500 |
---|---|---|
committer | Tim Terhorst <mynamewastaken+gitlab@gmail.com> | 2019-10-02 21:18:29 -0500 |
commit | 2ad33bc06ec0d4eaa9db287f06c4b204718fba4e (patch) | |
tree | 6235877b6a107561c3051e33aee274d95315a01c /tests/Core | |
parent | 3e2856545811ef6f61963299ce668749fb2af4e6 (diff) | |
download | nextcloud-server-2ad33bc06ec0d4eaa9db287f06c4b204718fba4e.tar.gz nextcloud-server-2ad33bc06ec0d4eaa9db287f06c4b204718fba4e.zip |
Add Fatal logging option
Signed-off-by: Tim Terhorst <mynamewastaken+gitlab@gmail.com>
Diffstat (limited to 'tests/Core')
-rw-r--r-- | tests/Core/Command/Log/ManageTest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/Core/Command/Log/ManageTest.php b/tests/Core/Command/Log/ManageTest.php index 4b026f14847..2044fc4de90 100644 --- a/tests/Core/Command/Log/ManageTest.php +++ b/tests/Core/Command/Log/ManageTest.php @@ -110,6 +110,7 @@ class ManageTest extends TestCase { ['wArn', 2], ['error', 3], ['eRr', 3], + ['fAtAl', 4], ]; } @@ -135,6 +136,7 @@ class ManageTest extends TestCase { [1, 'Info'], [2, 'Warning'], [3, 'Error'], + [4, 'Fatal'], ]; } |