@brief Format flags used to determine specifiers that are active for performance improvements.
| 869 | }; |
| 870 | /// @brief Format flags used to determine specifiers that are active for performance improvements. |
| 871 | enum class FormatFlags : base::type::EnumType { |
| 872 | DateTime = 1 << 1, |
| 873 | LoggerId = 1 << 2, |
| 874 | File = 1 << 3, |
| 875 | Line = 1 << 4, |
| 876 | Location = 1 << 5, |
| 877 | Function = 1 << 6, |
| 878 | User = 1 << 7, |
| 879 | Host = 1 << 8, |
| 880 | LogMessage = 1 << 9, |
| 881 | VerboseLevel = 1 << 10, |
| 882 | AppName = 1 << 11, |
| 883 | ThreadId = 1 << 12, |
| 884 | Level = 1 << 13, |
| 885 | FileBase = 1 << 14, |
| 886 | LevelShort = 1 << 15 |
| 887 | }; |
| 888 | /// @brief A subsecond precision class containing actual width and offset of the subsecond part |
| 889 | class SubsecondPrecision { |
| 890 | public: |
nothing calls this directly
no outgoing calls
no test coverage detected