add constant for all events
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 10 Apr 2008 11:24:24 +0000 (11:24 +0000)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Thu, 10 Apr 2008 11:24:24 +0000 (11:24 +0000)
git-svn-id: http://trooper/svn/projects/jSite/trunk@689 c3eda9e8-030b-0410-8277-bc7414b0a119

src/net/pterodactylus/util/fcp/Verbosity.java

index 831a8cd..ab27e1f 100644 (file)
@@ -25,6 +25,9 @@ public class Verbosity {
        /** Constant for compression message verbosity. */
        public static final Verbosity COMPRESSION = new Verbosity(512);
 
+       /** Constant for all events. */
+       public static final Verbosity ALL = new Verbosity(-1);
+
        /** The verbosity level. */
        private final int level;