1/* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
2
3Licensed under the Apache License, Version 2.0 (the "License");
4you may not use this file except in compliance with the License.
5You may obtain a copy of the License at
6
7 http://www.apache.org/licenses/LICENSE-2.0
8
9Unless required by applicable law or agreed to in writing, software
10distributed under the License is distributed on an "AS IS" BASIS,
11WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12See the License for the specific language governing permissions and
13limitations under the License.
14==============================================================================*/
15
16#include "tensorflow/lite/minimal_logging.h"
17
18#include <cstdarg>
19
20namespace tflite {
21namespace logging_internal {
22
23void MinimalLogger::Log(LogSeverity severity, const char* format, ...) {
24 va_list args;
25 va_start(args, format);
26 LogFormatted(severity, format, args);
27 va_end(args);
28}
29
30const char* MinimalLogger::GetSeverityName(LogSeverity severity) {
31 switch (severity) {
32 case TFLITE_LOG_VERBOSE:
33 return "VERBOSE";
34 case TFLITE_LOG_INFO:
35 return "INFO";
36 case TFLITE_LOG_WARNING:
37 return "WARNING";
38 case TFLITE_LOG_ERROR:
39 return "ERROR";
40 }
41 return "<Unknown severity>";
42}
43
44LogSeverity MinimalLogger::GetMinimumLogSeverity() {
45 return MinimalLogger::minimum_log_severity_;
46}
47
48LogSeverity MinimalLogger::SetMinimumLogSeverity(LogSeverity new_severity) {
49 LogSeverity old_severity = MinimalLogger::minimum_log_severity_;
50 MinimalLogger::minimum_log_severity_ = new_severity;
51 return old_severity;
52}
53
54} // namespace logging_internal
55} // namespace tflite
56