diff options
author | Marc Alexander <admin@m-a-styles.de> | 2016-08-21 09:24:19 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2016-08-21 09:24:19 +0200 |
commit | 6bcc372af50e422a6f4956d54f63e1123bbf57cb (patch) | |
tree | c74e52e9149793e90d5ab1f60e358130bb88427d /phpBB/phpbb/db/migrator_output_handler_interface.php | |
parent | 488fd8f54c1ef7f1703942477d014ac071e5cc56 (diff) | |
parent | 773f6d08a5f039eb0829886a6283a7ce1d97051e (diff) | |
download | forums-6bcc372af50e422a6f4956d54f63e1123bbf57cb.tar forums-6bcc372af50e422a6f4956d54f63e1123bbf57cb.tar.gz forums-6bcc372af50e422a6f4956d54f63e1123bbf57cb.tar.bz2 forums-6bcc372af50e422a6f4956d54f63e1123bbf57cb.tar.xz forums-6bcc372af50e422a6f4956d54f63e1123bbf57cb.zip |
Merge pull request #4419 from Elsensee/ticket/14742
[ticket/14742] Further improvements to migrator
Diffstat (limited to 'phpBB/phpbb/db/migrator_output_handler_interface.php')
-rw-r--r-- | phpBB/phpbb/db/migrator_output_handler_interface.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/phpbb/db/migrator_output_handler_interface.php b/phpBB/phpbb/db/migrator_output_handler_interface.php index a923af99f6..9947b51dcc 100644 --- a/phpBB/phpbb/db/migrator_output_handler_interface.php +++ b/phpBB/phpbb/db/migrator_output_handler_interface.php @@ -15,11 +15,11 @@ namespace phpbb\db; 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. |