about summary refs log tree commit diff
path: root/universe/ac_types/log.py
diff options
context:
space:
mode:
Diffstat (limited to 'universe/ac_types/log.py')
-rw-r--r--universe/ac_types/log.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/universe/ac_types/log.py b/universe/ac_types/log.py
deleted file mode 100644
index 797e2f719942..000000000000
--- a/universe/ac_types/log.py
+++ /dev/null
@@ -1,9 +0,0 @@
-enable = False
-
-
-def warn(x):
-    """Print `x` as a warning."""
-    if enable:
-        print('[Warning]: {}'.format(x))
-    else:
-        return None