This commit is contained in:
Your Name
2024-06-09 16:09:02 -05:00
27 changed files with 650 additions and 984 deletions

View File

@@ -232,6 +232,7 @@ std::unordered_map<std::string, uint32_t> keys = {
{"CarMake", PERSISTENT},
{"CarModel", PERSISTENT},
{"CarCruiseDisplayActual", PERSISTENT},
{"CarSpeedLimit", PERSISTENT},
{"CarSpeedLimitWarning", PERSISTENT},

View File

@@ -120,7 +120,8 @@ log.setLevel(logging.DEBUG)
outhandler = logging.StreamHandler()
print_level = os.environ.get('LOGPRINT', 'warning')
# print_level = os.environ.get('LOGPRINT', 'warning')
print_level = os.environ.get('LOGPRINT', 'debug')
if print_level == 'debug':
outhandler.setLevel(logging.DEBUG)
elif print_level == 'info':