blob: b96b6480f182100cd4fd00731fdf986f35fdc0d0 [file] [log] [blame]
Girish Kumarf56a4682020-03-20 20:07:46 +00001// +build integration
2
khenaidooab1f7bd2019-11-14 14:00:27 -05003/*
Girish Kumarf56a4682020-03-20 20:07:46 +00004 * Copyright 2020-present Open Networking Foundation
khenaidooab1f7bd2019-11-14 14:00:27 -05005 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
Girish Kumarf56a4682020-03-20 20:07:46 +000018package core
khenaidooab1f7bd2019-11-14 14:00:27 -050019
20import (
serkant.uluderya2ae470f2020-01-21 11:13:09 -080021 "github.com/opencord/voltha-lib-go/v3/pkg/log"
khenaidooab1f7bd2019-11-14 14:00:27 -050022)
23
Rohan Agrawal31f21802020-06-12 05:38:46 +000024var logger log.CLogger
khenaidooab1f7bd2019-11-14 14:00:27 -050025
khenaidooab1f7bd2019-11-14 14:00:27 -050026func init() {
27 // Setup this package so that it's log level can be modified at run time
Girish Kumarf56a4682020-03-20 20:07:46 +000028 var err error
Rohan Agrawal31f21802020-06-12 05:38:46 +000029 logger, err = log.RegisterPackage(log.JSON, log.ErrorLevel, log.Fields{"pkg": "core"})
khenaidooab1f7bd2019-11-14 14:00:27 -050030 if err != nil {
31 panic(err)
32 }
33}