| // Copyright 2013 The Flutter Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| #ifndef FLUTTER_IMPELLER_COMPILER_LOGGER_H_ |
| #define FLUTTER_IMPELLER_COMPILER_LOGGER_H_ |
| #include "flutter/fml/logging.h" |
| explicit AutoLogger(std::stringstream& logger) : logger_(logger) {} |
| AutoLogger& operator<<(const T& object) { |
| std::stringstream& logger_; |
| AutoLogger(const AutoLogger&) = delete; |
| AutoLogger& operator=(const AutoLogger&) = delete; |
| #define COMPILER_ERROR(stream) \ |
| ::impeller::compiler::AutoLogger(stream) << GetSourcePrefix() |
| #define COMPILER_ERROR_NO_PREFIX(stream) \ |
| ::impeller::compiler::AutoLogger(stream) |
| #endif // FLUTTER_IMPELLER_COMPILER_LOGGER_H_ |