Google OR-Tools v9.9
a fast and portable software suite for combinatorial optimization
Loading...
Searching...
No Matches
logging.h
Go to the documentation of this file.
1// Copyright 2010-2024 Google LLC
2// Licensed under the Apache License, Version 2.0 (the "License");
3// you may not use this file except in compliance with the License.
4// You may obtain a copy of the License at
5//
6// http://www.apache.org/licenses/LICENSE-2.0
7//
8// Unless required by applicable law or agreed to in writing, software
9// distributed under the License is distributed on an "AS IS" BASIS,
10// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11// See the License for the specific language governing permissions and
12// limitations under the License.
13
14#ifndef OR_TOOLS_BASE_LOGGING_H_
15#define OR_TOOLS_BASE_LOGGING_H_
16
17#include "absl/base/log_severity.h"
18#include "absl/flags/declare.h"
19#include "absl/flags/flag.h"
20#include "absl/log/check.h"
21#include "absl/log/die_if_null.h"
22#include "absl/log/log.h"
23#include "absl/memory/memory.h"
24#include "absl/status/status.h"
25#include "absl/strings/str_cat.h"
26#include "absl/strings/string_view.h"
27#include "ortools/base/macros.h"
28
29// Compatibility layer for glog/previous logging code.
30ABSL_DECLARE_FLAG(bool, logtostderr);
31
32// Forward the new flag.
33ABSL_DECLARE_FLAG(int, stderrthreshold);
34
35namespace operations_research {
36
38
39} // namespace operations_research
40
41#endif // OR_TOOLS_BASE_LOGGING_H_
ABSL_DECLARE_FLAG(bool, logtostderr)
Compatibility layer for glog/previous logging code.
In SWIG mode, we don't want anything besides these top-level includes.
void FixFlagsAndEnvironmentForSwig()
Definition logging.cc:31