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
🎨 Separate MIPI support from binary logger machinery
Problem:
- It is useful to have a binary message logger for any format, not just for
MIPI-SyS-T.
Solution:
- Separate the MIPI message building entirely from the binary catalog-based
logger.
Copy file name to clipboardExpand all lines: docs/logging.adoc
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Logging in _cib_ is in two parts:
14
14
Three possible logger implementations are provided:
15
15
16
16
- one using fmt in https://github.com/intel/compile-time-init-build/tree/main/include/log/fmt/logger.hpp[fmt/logger.hpp]
17
-
- one using the https://www.mipi.org/specifications/sys-t[MIPI Sys-T spec] in https://github.com/intel/compile-time-init-build/tree/main/include/log/catalog/mipi_encoder.hpp[catalog/mipi_encoder.hpp]
17
+
- one using binary encoding in https://github.com/intel/compile-time-init-build/tree/main/include/log/catalog/encoder.hpp[catalog/encoder.hpp], using the https://www.mipi.org/specifications/sys-t[MIPI Sys-T spec] by default
18
18
- the default implementation: the null logger which accepts everything, but never produces output
0 commit comments