blob: bca6848c6627660026b08b4d35500dcea1f689dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Jason Albert - created 03/06/2014
# Python module to define common output functions
############################################################
# Imports - Imports - Imports - Imports - Imports - Imports
############################################################
import os
############################################################
# Variables - Variables - Variables - Variables - Variables
############################################################
class VarBox:
pass
__m = VarBox()
__m.indent = 0
############################################################
# Function - Functions - Functions - Functions - Functions
############################################################
# Common function for error printing
def error(message):
print((' ' * __m.indent) + ("ERROR: %s" % message))
def warn(message):
print((' ' * __m.indent) + ("WARNING: %s" % message))
# Common function for debug printing
def debug(message):
print((' ' * __m.indent) + ("DEBUG: %s" % message))
def msg(message):
print((' ' * __m.indent) + message)
def setIndent(num):
"""
Sets the output indent on all printed lines
"""
__m.indent = num
|