From 694d65f3d0f43a815629965a9fa6732812467d86 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Thu, 10 Apr 2008 11:24:24 +0000 Subject: [PATCH] add constant for all events git-svn-id: http://trooper/svn/projects/jSite/trunk@689 c3eda9e8-030b-0410-8277-bc7414b0a119 --- src/net/pterodactylus/util/fcp/Verbosity.java | 3 +++ 1 file changed, 3 insertions(+) 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; -- 2.7.4