Skip to content
Snippets Groups Projects
Commit c46c0be7 authored by Edward Hicks's avatar Edward Hicks :8ball:
Browse files

make debug one of the standard configurable options

parent 0f5b3efa
No related branches found
No related tags found
No related merge requests found
Pipeline #92182 passed
......@@ -3,6 +3,9 @@
# Please copy this file to config.py and modify it instead of the example! #
############################################################################
# Enable debug messaging
#DEBUG = True
# The SNS topic we'll listen to for commands (its ARN, not its name)
Config['topic'] = 'My-SNS-Eventd-Topic'
......
......@@ -11,8 +11,6 @@ import boto3
from botocore.exceptions import ProfileNotFound, NoCredentialsError
from botocore.config import Config
DEBUG = False
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
......@@ -183,6 +181,7 @@ args = parser.parse_args()
# Global variables, functions, config, etc.
DEBUG = False
ret = 1 # init as a failure code
logFile = False
Session = {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment