mirror of https://github.com/ARMmbed/mbed-os.git
Small update to new functionality for logger
parent
0e6803b787
commit
23bcf850b3
|
@ -1103,9 +1103,10 @@ class TestLogger():
|
||||||
self.Log = []
|
self.Log = []
|
||||||
|
|
||||||
self.LogType = construct_enum(INFO='Info',
|
self.LogType = construct_enum(INFO='Info',
|
||||||
NOTIF='Notification',
|
|
||||||
WARN='Warning',
|
WARN='Warning',
|
||||||
ERROR='Error')
|
NOTIF='Notification',
|
||||||
|
ERROR='Error',
|
||||||
|
EXCEPT='Exception')
|
||||||
|
|
||||||
self.LogToFileAttr = construct_enum(CREATE=1, # Create or overwrite existing log file
|
self.LogToFileAttr = construct_enum(CREATE=1, # Create or overwrite existing log file
|
||||||
APPEND=2) # Append to existing log file
|
APPEND=2) # Append to existing log file
|
||||||
|
|
Loading…
Reference in New Issue