]> git.phdru.name Git - bookmarks_db.git/commitdiff
More logging.
authorOleg Broytman <phd@phdru.name>
Wed, 11 Aug 2010 16:48:09 +0000 (16:48 +0000)
committerOleg Broytman <phd@phdru.name>
Wed, 11 Aug 2010 16:48:09 +0000 (16:48 +0000)
git-svn-id: file:///home/phd/archive/SVN/bookmarks_db/trunk@255 fdd5c36f-1aea-0310-aeeb-c58d7e2b6c23

Robots/bkmk_rsimple.py
Robots/bkmk_rsimple_tos.py

index afeeb254e2b519a33e145612e1b57de3116ec649..228899629fb507e94a7877da50ca698c078bc666 100644 (file)
@@ -1,7 +1,7 @@
 """
    Simple, strightforward robot
 
-   Written by Oleg Broytman. Copyright (C) 2000-2008 PhiloSoft Design.
+   Written by Oleg Broytman. Copyright (C) 2000-2010 PhiloSoft Design.
 """
 
 import sys, os
@@ -239,22 +239,28 @@ class robot_simple(Robot):
       except IOError, msg:
          if (msg[0] == "http error") and (msg[1] == -1):
             bookmark.no_error = "The server did not return any header - it is not an error, actually"
+            self.log(bookmark.no_error)
          else:
             bookmark.error = get_error(msg)
+            self.log(bookmark.error)
 
       except EOFError:
          bookmark.error = "Unexpected EOF (FTP server closed connection)"
+         self.log(bookmark.error)
 
       except RedirectException, msg:
          bookmark.moved = str(msg)
+         self.log(bookmark.moved)
 
       except KeyboardInterrupt:
+         self.log("Keyboard interrupt (^C)")
          return 0
 
       except:
          import traceback
          traceback.print_exc()
          bookmark.error = "Exception!"
+         self.log(bookmark.error)
 
       finally:
          self.finish_check_url(bookmark)
index 6e032152e58d48169ece4c63925e0f890bc7dfcd..0be22b843f421c5bd58505ce42bea75c3df4f4b3 100644 (file)
@@ -1,7 +1,7 @@
 """
    Simple robot with socket's timeout
 
-   Written by Broytman. Copyright (C) 2000-2007 PhiloSoft Design
+   Written by Broytman. Copyright (C) 2000-2010 PhiloSoft Design
 """
 
 import socket
@@ -16,6 +16,7 @@ class robot_simple_tos(robot_simple):
          return robot_simple.check_url(self, bookmark)
       except socket.error, msg:
          bookmark.error = get_error(msg)
+         self.log(bookmark.error)
 
       self.finish_check_url(bookmark)
       return 1