about summary refs log tree commit diff
path: root/universe/ac_types/log.py
blob: 797e2f71994257da923641cbcd650c67a51c06ee (plain) (blame)
1
2
3
4
5
6
7
8
9
enable = False


def warn(x):
    """Print `x` as a warning."""
    if enable:
        print('[Warning]: {}'.format(x))
    else:
        return None