degal/commands/main.py
changeset 76 e22d9f699081
parent 66 322e5cd0cb1f
child 87 a7a18893730d
--- a/degal/commands/main.py	Fri Jun 05 23:41:57 2009 +0300
+++ b/degal/commands/main.py	Fri Jun 05 23:42:03 2009 +0300
@@ -1,4 +1,4 @@
-from degal.commands import command
+from degal.command import command
 from degal import templates
 
 def render_image (ctx, image) :
@@ -7,7 +7,7 @@
     """
     
     # log image path
-    ctx.log_debug("%s", image)
+    ctx.log_info("%s", image)
 
     # render output
     tpl = templates.master(ctx.gallery, image.title, image.html, 
@@ -23,7 +23,7 @@
     """
 
     # log folder path
-    ctx.log_debug("%s", folder)
+    ctx.log_info("%s", folder)
 
     # render folder index
     for page in xrange(folder.page_count) :