imrehg / minibook

A Facebook status updater and lister in Python.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Proper logging

imrehg opened this issue · comments

Use proper logger, not the current "print". This would allow different levels of information, and would be much more meaningful....

logging: converting every possible "print" into log, Closed by 09e3ae4

Used loglevels:
error: for errors
info: for information that might be useful besides operating the program
debug: most data that is handled, and entering, leaving logical segments
of the algorithm

This handles currently shown information, but need to add more logs.