|
@@ -11,17 +11,17 @@ class Logger(object):
|
|
@staticmethod
|
|
@staticmethod
|
|
def showError(error):
|
|
def showError(error):
|
|
if(Logger.verbose > -1) :
|
|
if(Logger.verbose > -1) :
|
|
- print "ERROR : " + error
|
|
|
|
|
|
+ print("ERROR : " + error)
|
|
|
|
|
|
@staticmethod
|
|
@staticmethod
|
|
def showWarning(warning):
|
|
def showWarning(warning):
|
|
if(Logger.verbose > 0) :
|
|
if(Logger.verbose > 0) :
|
|
- print "WARNING : " + warning
|
|
|
|
|
|
+ print("WARNING : " + warning)
|
|
|
|
|
|
@staticmethod
|
|
@staticmethod
|
|
def showInfo(info):
|
|
def showInfo(info):
|
|
if(Logger.verbose > 1) :
|
|
if(Logger.verbose > 1) :
|
|
- print "INFO : " + info
|
|
|
|
|
|
+ print("INFO : " + info)
|
|
|
|
|
|
#######################
|
|
#######################
|
|
|
|
|