logging: rename the `DEBUG` log level to `DBG`
[folly.git] / folly / experimental / logging / LogHandlerConfig.cpp
1 /*
2  * Copyright 2004-present Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #include <folly/experimental/logging/LogHandlerConfig.h>
17
18 #include <folly/lang/SafeAssert.h>
19
20 using std::string;
21
22 namespace folly {
23
24 LogHandlerConfig::LogHandlerConfig() {}
25
26 LogHandlerConfig::LogHandlerConfig(StringPiece t) : type{t.str()} {}
27
28 LogHandlerConfig::LogHandlerConfig(Optional<StringPiece> t)
29     : type{t.hasValue() ? Optional<string>{t->str()} : Optional<string>{}} {}
30
31 LogHandlerConfig::LogHandlerConfig(StringPiece t, Options opts)
32     : type{t.str()}, options{std::move(opts)} {}
33
34 LogHandlerConfig::LogHandlerConfig(Optional<StringPiece> t, Options opts)
35     : type{t.hasValue() ? Optional<string>{t->str()} : Optional<string>{}},
36       options{std::move(opts)} {}
37
38 void LogHandlerConfig::update(const LogHandlerConfig& other) {
39   FOLLY_SAFE_DCHECK(
40       !other.type.hasValue(), "LogHandlerConfig type cannot be updated");
41   for (const auto& option : other.options) {
42     options[option.first] = option.second;
43   }
44 }
45
46 bool LogHandlerConfig::operator==(const LogHandlerConfig& other) const {
47   return type == other.type && options == other.options;
48 }
49
50 bool LogHandlerConfig::operator!=(const LogHandlerConfig& other) const {
51   return !(*this == other);
52 }
53
54 } // namespace folly