14 lines
273 B
Python
Executable File
14 lines
273 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
from pprint import pprint
|
|
|
|
|
|
def info(msg):
|
|
"""Info level logging output."""
|
|
pprint("-----> INFO: dokku-deploy: {}".format(msg))
|
|
|
|
|
|
def error(msg):
|
|
"""Error level logging output."""
|
|
pprint("-----> ERROR: dokku-deploy: {}".format(msg))
|