diff --git a/kiss_and_db.py b/kiss_and_db.py index e9d7af2..9d74bfa 100644 --- a/kiss_and_db.py +++ b/kiss_and_db.py @@ -122,12 +122,12 @@ def main(): # "5 minutes" also works #conn.execute("DELETE FROM frames WHERE created < DATETIME('now', '"+config['Settings']['keep_time']+"')") #conn.commit() - except: + except Exception as error: #print("Error with SQLite!") - logging.error("Error with SQLite!") + logging.error("Error with SQLite!", exc_info = error) except Exception as error: #print("Frame could not be parsed.") - logging.error("Frame could not be parsed:", error) + logging.error("Frame could not be parsed:", exc_info = error) conn.close()