diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2016-08-20 22:38:45 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2016-08-20 22:38:45 +0200 |
commit | 88384a1e6313f827a098fcd90e3a7209cc6bb204 (patch) | |
tree | e3938cfa2d2e1b5aa8a0c061d153fde87c4dd6e7 /phpBB/phpbb/db/output_handler | |
parent | 723d9d8e4c9f397eab7af77e6e6bd851354a9dcd (diff) | |
parent | 773f6d08a5f039eb0829886a6283a7ce1d97051e (diff) | |
download | forums-88384a1e6313f827a098fcd90e3a7209cc6bb204.tar forums-88384a1e6313f827a098fcd90e3a7209cc6bb204.tar.gz forums-88384a1e6313f827a098fcd90e3a7209cc6bb204.tar.bz2 forums-88384a1e6313f827a098fcd90e3a7209cc6bb204.tar.xz forums-88384a1e6313f827a098fcd90e3a7209cc6bb204.zip |
Merge branch 'ticket/14742' into ticket/14742-32x
Conflicts:
phpBB/phpbb/db/migrator.php
Diffstat (limited to 'phpBB/phpbb/db/output_handler')
-rw-r--r-- | phpBB/phpbb/db/output_handler/migrator_output_handler_interface.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/phpbb/db/output_handler/migrator_output_handler_interface.php b/phpBB/phpbb/db/output_handler/migrator_output_handler_interface.php index 7bb5c73fec..455d8aabbb 100644 --- a/phpBB/phpbb/db/output_handler/migrator_output_handler_interface.php +++ b/phpBB/phpbb/db/output_handler/migrator_output_handler_interface.php @@ -15,11 +15,11 @@ namespace phpbb\db\output_handler; interface migrator_output_handler_interface { - const VERBOSITY_QUIET = 0; - const VERBOSITY_NORMAL = 1; - const VERBOSITY_VERBOSE = 2; - const VERBOSITY_VERY_VERBOSE = 3; - const VERBOSITY_DEBUG = 4; + const VERBOSITY_QUIET = 16; + const VERBOSITY_NORMAL = 32; + const VERBOSITY_VERBOSE = 64; + const VERBOSITY_VERY_VERBOSE = 128; + const VERBOSITY_DEBUG = 256; /** * Write output using the configured closure. |