Shaka Packager SDK
logging.h
1 // Copyright 2023 Google LLC. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 
7 #ifndef PACKAGER_MACROS_LOGGING_H_
8 #define PACKAGER_MACROS_LOGGING_H_
9 
10 #include <absl/log/globals.h>
11 #include <absl/log/log.h>
12 
15 #define NOTIMPLEMENTED() LOG(ERROR) << "NOTIMPLEMENTED: "
16 
17 #endif // PACKAGER_MACROS_LOGGING_H_