Thunderbots Project
Loading...
Searching...
No Matches
custom_logging_levels.h
1#pragma once
2
3
4// See https://github.com/KjellKod/g3log/blob/master/docs/API_custom_formatting.md
5// for adding custom log levels
6
7// A custom level used to specify messages that contain robot statuses, including various
8// diagnostic information like battery voltage and wheel encoder errors. These messages
9// are separate because they are shown separately in the FullSystemGUI.
10// over radio
11const LEVELS CSV{INFO.value + 1, {"CSV"}};
12const LEVELS VISUALIZE{INFO.value + 2, {"VISUALIZE"}};
13const LEVELS PLOTJUGGLER{INFO.value + 3, {"PLOTJUGGLER"}};