blob: 2d2a6a66c877df592a8705ae3c2d0ce77b2e383d [file] [log] [blame]
divyadesai81bb7ba2020-03-11 11:45:23 +00001/*
2 * Copyright 2020-present Open Networking Foundation
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 */
16package kvstore
17
18import (
19 "github.com/opencord/voltha-lib-go/v3/pkg/log"
20)
21
22const (
23 logLevel = log.ErrorLevel
24)
25
26var logger log.Logger
27
28func init() {
29 // Setup this package so that it's log level can be modified at run time
30 var err error
31 logger, err = log.AddPackage(log.JSON, logLevel, log.Fields{"pkg": "kvstore"})
32 if err != nil {
33 panic(err)
34 }
35}