INET-Complexity / isle

11 stars 20 forks source link

Simplify logging #116

Open rht opened 5 years ago

rht commented 5 years ago

The pattern

if isleconfig.verbose:
    print("...")

could be replaced with

logging.info("...")

and is a standard practice.