You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libs/libvtrutil/src/vtr_log.h
+5-3
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,10 @@
13
13
*
14
14
* Three types of log message types are defined:
15
15
* - VTR_LOG : The standard 'info' type log message
16
-
* - VTR_LOG_WARN : A warning log message. This represents unusual condition that may indicate an issue but executiom continues
17
-
* - VTR_LOG_ERROR : An error log message. This represents a clear issue that should result in stopping the program execution. Please note that using this log message will not actually terminate the program. So a VtrError should be thrown after all the neccessary VTR_LOG_ERROR messages are printed.
16
+
* - VTR_LOG_WARN : A warning log message. This represents an unusual condition that may indicate an issue but execution continues
17
+
* - VTR_LOG_ERROR : An error log message. This represents a clear issue that should result in stopping the program execution.
18
+
* Please note that using this log message will not actually terminate the program. So a VtrError should be thrown
19
+
* after all the necessary VTR_LOG_ERROR messages are printed.
18
20
*
19
21
* For example:
20
22
*
@@ -27,7 +29,7 @@
27
29
*
28
30
* Each of the three message types also have a VTR_LOGV_* variant,
29
31
* which will cause the message to be logged if a user-defined condition
0 commit comments