[f-spot] Fix Log.Debug statement



commit 012d4bc8c2c235393394a95d643e64591ed45584
Author: Lorenzo Milesi <maxxer yetopen it>
Date:   Sat Jun 5 19:47:14 2010 +0200

    Fix Log.Debug statement

 src/PhotoStore.cs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/PhotoStore.cs b/src/PhotoStore.cs
index 5a3a732..258c0cf 100644
--- a/src/PhotoStore.cs
+++ b/src/PhotoStore.cs
@@ -819,7 +819,7 @@ public class PhotoStore : DbStore<Photo> {
 	public void QueryToTemp(string temp_table, string query)
 	{
 		uint timer = Log.DebugTimerStart ();
-		Log.Debug ("Query Started : {0}", query);
+		Log.DebugFormat ("Query Started : {0}", query);
 		Database.BeginTransaction ();
 		Database.ExecuteNonQuery (String.Format ("DROP TABLE IF EXISTS {0}", temp_table));
 		//Database.ExecuteNonQuery (String.Format ("CREATE TEMPORARY TABLE {0} AS {1}", temp_table, query));



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