f-spot r4184 - trunk/extensions/DevelopInUFraw



Author: sdelcroix
Date: Tue Jul 15 12:07:22 2008
New Revision: 4184
URL: http://svn.gnome.org/viewvc/f-spot?rev=4184&view=rev

Log:
switch from s.c.wl to Log. ptatch from pmjdebruijn


Modified:
   trunk/extensions/DevelopInUFraw/DevelopInUFRaw.cs

Modified: trunk/extensions/DevelopInUFraw/DevelopInUFRaw.cs
==============================================================================
--- trunk/extensions/DevelopInUFraw/DevelopInUFRaw.cs	(original)
+++ trunk/extensions/DevelopInUFraw/DevelopInUFRaw.cs	Tue Jul 15 12:07:22 2008
@@ -11,6 +11,7 @@
 using System.IO;
 
 using FSpot;
+using FSpot.Utils;
 using FSpot.Extensions;
 using Mono.Unix;
 
@@ -24,7 +25,7 @@
 
 		public override void Run (object o, EventArgs e)
 		{
-			Console.WriteLine ("EXECUTING DEVELOP IN UFRAW EXTENSION");
+			Log.Information ("Executing DevelopInUFRaw extension");
 			
 			foreach (Photo p in MainWindow.Toplevel.SelectedPhotos ()) {
 				DevelopPhoto (p);
@@ -44,7 +45,7 @@
 														ProgressDialog.CancelButtonType.Cancel,
 														MainWindow.Toplevel.SelectedPhotos ().Length,
 														MainWindow.Toplevel.Window);
-			Console.WriteLine ("EXECUTING DEVELOP IN UFRAW EXTENSION");
+			Log.Information ("Executing DevelopInUFRaw extension in batch mode");
 			
 			foreach (Photo p in MainWindow.Toplevel.SelectedPhotos ()) {
 				bool cancelled = pdialog.Update(String.Format(Catalog.GetString ("Developing {0}"), p.Name));
@@ -75,7 +76,7 @@
 		{
 			PhotoVersion raw = p.GetVersion (Photo.OriginalVersionId) as PhotoVersion;
 			if (!ImageFile.IsRaw (raw.Uri.AbsolutePath)) {
-				Console.WriteLine ("The Original version of this image is not a (supported) RAW file");
+				Log.Warning ("The original version of this image is not a (supported) RAW file");
 				return;
 			}
 
@@ -92,12 +93,12 @@
 				idfile,
 				CheapEscape (developed.LocalPath),
 				CheapEscape (raw.Uri.ToString ()));
-			Console.WriteLine (executable+" " + args);
+			Log.Debug (executable + " " + args);
 
 			System.Diagnostics.Process ufraw = System.Diagnostics.Process.Start (executable, args); 
 			ufraw.WaitForExit ();
 			if (!(new Gnome.Vfs.Uri (developed.ToString ())).Exists) {
-				Console.WriteLine ("UFraw didn't ended well. Check that you have UFRaw 0.13 (or CVS newer than 2007-09-06). Or did you simply clicked on Cancel ?");
+				Log.Warning ("UFRaw quit with an error. Check that you have UFRaw 0.13 or newer. Or did you simply clicked on Cancel?");
 				return;
 			}
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]