]> www.vanbest.org Git - motioneye-debian/commitdiff
request logging is now set to debug
authorCalin Crisan <ccrisan@gmail.com>
Sun, 6 Oct 2013 15:49:07 +0000 (18:49 +0300)
committerCalin Crisan <ccrisan@gmail.com>
Sun, 6 Oct 2013 15:49:07 +0000 (18:49 +0300)
doc/todo.txt
src/server.py

index baee288e2abab8118e0e2be84fad8533408bb324..937f34bd5baa95426729310d0bc5b420d2b7db88 100644 (file)
@@ -6,7 +6,6 @@
 
 -> prevent Request closed errors by stopping mjpg clients before stopping motion
 -> make all the server http requests async
--> remove current snapshot GET logs
 
 -> style scroll bars
 -> hint text next to section titles
@@ -19,6 +18,7 @@
 -> add a previewer for snapshots
 -> add a motioneye.svg icon
 
+-> implement file preserving
 -> add other options applicable only to special devices (rpi): wifi settings, notifications
 -> group @config rules to top
 
index 908cc862a5d7d8e027318e51da053d74e831506f..5cddb1c69931b10aaa66acf83660c52d535de584 100644 (file)
@@ -2,6 +2,7 @@
 from tornado.web import Application
 
 import handlers
+import logging
 import settings
 import template
 
@@ -18,6 +19,7 @@ application = Application(
         (r'^/movie/(?P<camera_id>\d+)/(?P<op>download)/(?P<filename>.+)/?$', handlers.MovieHandler),
     ],
     debug=settings.DEBUG,
+    log_function=logging.debug,
     static_path=settings.STATIC_PATH,
     static_url_prefix=settings.STATIC_URL
 )