如果我处于调试模式,我想做其他事情,而不是我不在的时候。
if DEBUG:
STORED_DATA_FILE = os.path.join(TEMP_DIR, 'store.dat')
LOG_LEVEL = logging.DEBUG
print "debug mode"
else:
STORED_DATA_FILE = os.path.join(SCRIPT_PATH, 'store.dat')
LOG_LEVEL = logging.INFO
print "not debug mode"
然后:
python script.py
not debug mode
python -d script.py
debug mode
我怎样才能检测到呢?它当然没有使用__debug__
变量。