diff options
author | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2024-07-08 17:15:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-08 17:15:02 +0200 |
commit | a434dfbcb345723b774f8f13dd8369ab76e54967 (patch) | |
tree | 28a2af3b6488a5f4e6683dc2bbfd683484c1cbc2 /lib/public | |
parent | fe90956aa45df0638169081e0854d2ec035f1c95 (diff) | |
parent | 5b9966feba3eea42cc961564ba32ff8d7ba28aa8 (diff) | |
download | nextcloud-server-a434dfbcb345723b774f8f13dd8369ab76e54967.tar.gz nextcloud-server-a434dfbcb345723b774f8f13dd8369ab76e54967.zip |
Merge pull request #46115 from nextcloud/enh/add-a-universal-debug-option-to-occ
feat(occ): Add a --debug option to output all log levels to the output
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Console/ReservedOptions.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/lib/public/Console/ReservedOptions.php b/lib/public/Console/ReservedOptions.php new file mode 100644 index 00000000000..aff7a7daa3a --- /dev/null +++ b/lib/public/Console/ReservedOptions.php @@ -0,0 +1,24 @@ +<?php + +declare(strict_types=1); + +/** + * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors + * SPDX-License-Identifier: AGPL-3.0-or-later + */ + +namespace OCP\Console; + +/** + * @since 30.0.0 + */ +final class ReservedOptions { + /** + * @since 30.0.0 + */ + public const DEBUG_LOG = 'debug-log'; + /** + * @since 30.0.0 + */ + public const DEBUG_LOG_LEVEL = 'debug-log-level'; +} |