This repository has been archived on 2020-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
dokku-ansible-deploy/functions

14 lines
273 B
Plaintext
Raw Normal View History

2020-04-02 22:57:29 +00:00
#!/usr/bin/env python3
2020-04-07 13:43:53 +00:00
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))