diff --git a/core/Command/Log/Manage.php b/core/Command/Log/Manage.php
index 5a1dd3d048b8e75fb5ef6310368c26ce56203b5e..1015235f6ef63f30ad4c633af1b917eb78dde631 100644
--- a/core/Command/Log/Manage.php
+++ b/core/Command/Log/Manage.php
@@ -62,7 +62,7 @@ class Manage extends Command implements CompletionAwareInterface {
 				'level',
 				null,
 				InputOption::VALUE_REQUIRED,
-				'set the log level [debug, info, warning, error]'
+				'set the log level [debug, info, warning, error, fatal]'
 			)
 			->addOption(
 				'timezone',
@@ -152,6 +152,8 @@ class Manage extends Command implements CompletionAwareInterface {
 		case 'error':
 		case 'err':
 			return 3;
+		case 'fatal':
+			return 4;
 		}
 		throw new \InvalidArgumentException('Invalid log level string');
 	}
@@ -171,6 +173,8 @@ class Manage extends Command implements CompletionAwareInterface {
 			return 'Warning';
 		case 3:
 			return 'Error';
+		case 4:
+			return 'Fatal';
 		}
 		throw new \InvalidArgumentException('Invalid log level number');
 	}
@@ -184,7 +188,7 @@ class Manage extends Command implements CompletionAwareInterface {
 		if ($optionName === 'backend') {
 			return ['file', 'syslog', 'errorlog', 'systemd'];
 		} else if ($optionName === 'level') {
-			return ['debug', 'info', 'warning', 'error'];
+			return ['debug', 'info', 'warning', 'error', 'fatal'];
 		} else if ($optionName === 'timezone') {
 			return \DateTimeZone::listIdentifiers();
 		}
diff --git a/tests/Core/Command/Log/ManageTest.php b/tests/Core/Command/Log/ManageTest.php
index 4b026f148475b9c8f7b773aa7e4318bf61b7709f..2044fc4de90699d0128ffb2a5e5acb58e462542f 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'],
 		];
 	}