summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Krier <cedk@gentoo.org>2008-03-25 22:25:00 +0000
committerCédric Krier <cedk@gentoo.org>2008-03-25 22:25:00 +0000
commit28412303f2666fc842127cabd2d1da41b75614c9 (patch)
tree9d78f6e9b4f9e8edffdc380d573514b79576b5d8 /app-misc/beagle/files
parentAdd uses for app-misc/beagle (diff)
downloadgentoo-2-28412303f2666fc842127cabd2d1da41b75614c9.tar.gz
gentoo-2-28412303f2666fc842127cabd2d1da41b75614c9.tar.bz2
gentoo-2-28412303f2666fc842127cabd2d1da41b75614c9.zip
Version bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'app-misc/beagle/files')
-rw-r--r--app-misc/beagle/files/beagle-0.3.3-log-level-warn.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/app-misc/beagle/files/beagle-0.3.3-log-level-warn.patch b/app-misc/beagle/files/beagle-0.3.3-log-level-warn.patch
new file mode 100644
index 000000000000..307b10693eb0
--- /dev/null
+++ b/app-misc/beagle/files/beagle-0.3.3-log-level-warn.patch
@@ -0,0 +1,34 @@
+Index: beagled/BeagleDaemon.cs
+===================================================================
+--- beagled/BeagleDaemon.cs (revision 4355)
++++ beagled/BeagleDaemon.cs (working copy)
+@@ -455,7 +455,7 @@
+ // debugging this code, after all...
+ // arg_debug ? LogLevel.Debug : LogLevel.Warn
+
+- Log.Initialize (PathFinder.LogDir, "Beagle", LogLevel.Debug, arg_fg);
++ Log.Initialize (PathFinder.LogDir, "Beagle", arg_debug ? LogLevel.Debug : LogLevel.Warn, arg_fg);
+ Log.Always ("Starting Beagle Daemon (version {0})", ExternalStringsHack.Version);
+ Log.Always ("Running on {0}", SystemInformation.MonoRuntimeVersion);
+ Log.Always ("Command Line: {0}",
+Index: beagled/IndexHelper/IndexHelper.cs
+===================================================================
+--- beagled/IndexHelper/IndexHelper.cs (revision 4355)
++++ beagled/IndexHelper/IndexHelper.cs (working copy)
+@@ -92,14 +92,13 @@
+
+ // FIXME: We always turn on full debugging output! We are still
+ // debugging this code, after all...
+- //bool debug = (Environment.GetEnvironmentVariable ("BEAGLE_DEBUG_FLAG_IS_SET") != null);
++ bool debug = (Environment.GetEnvironmentVariable ("BEAGLE_DEBUG_FLAG_IS_SET") != null);
+
+ last_activity = DateTime.Now;
+
+ Log.Initialize (PathFinder.LogDir,
+ "IndexHelper",
+- //debug ? LogLevel.Debug : LogLevel.Warn,
+- LogLevel.Debug,
++ debug ? LogLevel.Debug : LogLevel.Warn,
+ run_by_hand || log_in_fg);
+
+ Log.Always ("Starting Index Helper process (version {0})", ExternalStringsHack.Version);