khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 1 | /* |
Joey Armstrong | 7f8436c | 2023-07-09 20:23:27 -0400 | [diff] [blame] | 2 | * Copyright 2020-2023 Open Networking Foundation (ONF) and the ONF Contributors |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 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 | package kafka |
| 17 | |
| 18 | import ( |
khenaidoo | 2672188 | 2021-08-11 17:42:52 -0400 | [diff] [blame] | 19 | "github.com/opencord/voltha-lib-go/v7/pkg/log" |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 20 | ) |
| 21 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 22 | var logger log.CLogger |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 23 | |
| 24 | func init() { |
| 25 | // Setup this package so that it's log level can be modified at run time |
| 26 | var err error |
Rohan Agrawal | 3c40323 | 2020-07-29 03:27:56 +0000 | [diff] [blame] | 27 | logger, err = log.RegisterPackage(log.JSON, log.ErrorLevel, log.Fields{}) |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 28 | if err != nil { |
| 29 | panic(err) |
| 30 | } |
| 31 | } |