Browse Source

Fix logging

master
Pavel Šimerda 8 years ago
parent
commit
b3c44ff5b1
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      lib/invoice/cli.py

+ 3
- 2
lib/invoice/cli.py View File

@@ -3,11 +3,12 @@
from __future__ import print_function

import os, sys, argparse, datetime, subprocess
import invoice.db

import logging
logging.basicConfig(level=logging.DEBUG)
log = logging.getLogger()

import invoice.db

class SanityCheckError(Exception):
pass



Loading…
Cancel
Save