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
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))