blob: a2db85e2d3e32404b99484164d7c1742867e7def [file] [log] [blame]
Sarah Newmana7e87932022-04-11 15:00:03 -07001namespace aos.logging;
2
3table DynamicLogCommand {
4 // Application name
5 name:string (id: 0);
6
7 // vlog level to set
8 vlog_level:int (id: 1);
9}
10
11root_type DynamicLogCommand;