From: David ‘Bombe’ Roden Date: Thu, 10 Apr 2008 11:24:24 +0000 (+0000) Subject: add constant for all events X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=694d65f3d0f43a815629965a9fa6732812467d86;p=jSite2.git add constant for all events git-svn-id: http://trooper/svn/projects/jSite/trunk@689 c3eda9e8-030b-0410-8277-bc7414b0a119 --- diff --git a/src/net/pterodactylus/util/fcp/Verbosity.java b/src/net/pterodactylus/util/fcp/Verbosity.java index 831a8cd..ab27e1f 100644 --- a/src/net/pterodactylus/util/fcp/Verbosity.java +++ b/src/net/pterodactylus/util/fcp/Verbosity.java @@ -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;