blob: b77cf3d5a16dac1afe44fdf8a951f11f7ec4a8b0 [file] [log] [blame]
Takahiro Suzukid7bf8202020-12-17 20:21:59 +09001/*
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 */
16
17//Package l2oam Common Logger initialization
18package l2oam
19
20import (
21 "context"
22 "fmt"
23 "time"
24)
25
26//var logger log.CLogger
27var logger l2OAMLogger
28
29// func init() {
30// // Setup this package so that it's log level can be modified at run time
31// var err error
32// logger, err = log.RegisterPackage(log.JSON, log.ErrorLevel, log.Fields{})
33// if err != nil {
34// panic(err)
35// }
36// }
37
38func init() {
39 logger = l2OAMLogger{}
40 logger.Debug(context.Background(), "initialize l2oam logger")
41}
42
43//l2OAMLogger ...
44type l2OAMLogger struct {
45}
46
47//Debug ...
48func (l *l2OAMLogger) Debug(ctx context.Context, message string) {
49 fmt.Printf("%v:%s\n", time.Now(), message)
50}