Skip to content

Commit

Permalink
Add module docstring to logger
Browse files Browse the repository at this point in the history
  • Loading branch information
thatsIch committed Dec 14, 2016
1 parent 8a52791 commit 96eeb89
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion logger.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
from datetime import datetime
"""This module provides general methods for logging puprposes.
Basic operations are:
* info
* error
with these operations it is easier to track from where the information is printed
"""

import os

from datetime import datetime

import sublime

__log = None
Expand Down

0 comments on commit 96eeb89

Please sign in to comment.