| // Copyright 2021 Google LLC |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| #pragma once |
| #include <stdplus/print.hpp> |
| |
| #include <format> |
| |
| namespace flashupdate |
| { |
| |
| enum class LogLevel : uint8_t |
| { |
| Emerg = 0, |
| Alert = 1, |
| Crit = 2, |
| Error = 3, |
| Warning = 4, |
| Notice = 5, |
| Info = 6, |
| Debug = 7, |
| }; |
| |
| extern LogLevel logLevel; |
| |
| #define LOG(level, ...) \ |
| switch (0) \ |
| default: \ |
| if ((level > ::flashupdate::logLevel)) \ |
| {} \ |
| else \ |
| ::stdplus::println(stderr, "<{}> {}", \ |
| static_cast<u_int8_t>(level), \ |
| std::format(__VA_ARGS__)); |
| |
| #define STDLOG(...) \ |
| do \ |
| { \ |
| ::stdplus::print(stdout, __VA_ARGS__); \ |
| } while (0) |
| |
| } // namespace flashupdate |