Change script for apply upstream code
[platform/upstream/connectedhomeip.git] / examples / chip-tool / commands / common / Logging.cpp
1 /*
2  *   Copyright (c) 2020 Project CHIP Authors
3  *   All rights reserved.
4  *
5  *   Licensed under the Apache License, Version 2.0 (the "License");
6  *   you may not use this file except in compliance with the License.
7  *   You may obtain a copy of the License at
8  *
9  *       http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *   Unless required by applicable law or agreed to in writing, software
12  *   distributed under the License is distributed on an "AS IS" BASIS,
13  *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *   See the License for the specific language governing permissions and
15  *   limitations under the License.
16  *
17  */
18
19 #include <support/CodeUtils.h>
20 #include <support/logging/CHIPLogging.h>
21
22 #include <stdlib.h>
23 #include <string.h>
24
25 using namespace ::chip::Logging;
26
27 constexpr LogCategory kDefaultLoggingLevel = kLogCategory_Detail;
28
29 void ConfigureChipLogging()
30 {
31     LogCategory chipLogLevel = kDefaultLoggingLevel;
32
33     const char * level = getenv("CHIP_LOG_LEVEL");
34     VerifyOrExit(level != NULL, /**/);
35
36     if (strcasecmp(level, "none") == 0)
37     {
38         chipLogLevel = kLogCategory_None;
39     }
40     else if (strcasecmp(level, "error") == 0)
41     {
42         chipLogLevel = kLogCategory_Error;
43     }
44     else if (strcasecmp(level, "progress") == 0)
45     {
46         chipLogLevel = kLogCategory_Progress;
47     }
48     else if (strcasecmp(level, "detail") == 0)
49     {
50         chipLogLevel = kLogCategory_Detail;
51     }
52     else if (strcasecmp(level, "retain") == 0)
53     {
54         chipLogLevel = kLogCategory_Retain;
55     }
56
57 exit:
58     SetLogFilter(chipLogLevel);
59 }