khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 1 | /* |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 2 | * Copyright 2020-present Open Networking Foundation |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -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 | */ |
khenaidoo | d2b7be6 | 2019-12-12 15:17:29 -0500 | [diff] [blame] | 16 | package db |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 17 | |
| 18 | import ( |
serkant.uluderya | b38671c | 2019-11-01 09:35:38 -0700 | [diff] [blame] | 19 | "github.com/opencord/voltha-lib-go/v3/pkg/log" |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 20 | ) |
| 21 | |
| 22 | const ( |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 23 | logLevel = log.ErrorLevel |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 24 | ) |
| 25 | |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 26 | var logger log.Logger |
| 27 | |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 28 | func init() { |
| 29 | // Setup this package so that it's log level can be modified at run time |
khenaidoo | b332f9b | 2020-01-16 16:25:26 -0500 | [diff] [blame] | 30 | var err error |
| 31 | logger, err = log.AddPackage(log.JSON, logLevel, log.Fields{"pkg": "db"}) |
khenaidoo | 59ce9dd | 2019-11-11 13:05:32 -0500 | [diff] [blame] | 32 | if err != nil { |
| 33 | panic(err) |
| 34 | } |
| 35 | } |