mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-05 04:17:06 +00:00
cloud-init data from vmware guest info as it described in the link below https://github.com/vmware/cloud-init-vmware-guestinfo Signed-off-by: Birol Bilgin <birolbilgin@gmail.com> Co-authored-by: Birol Bilgin <birol.bilgin@basefarm.com>
62 lines
1.5 KiB
Go
Vendored
62 lines
1.5 KiB
Go
Vendored
// Copyright 2016 VMware, Inc. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package message
|
|
|
|
import "log"
|
|
|
|
var DefaultLogger Logger
|
|
|
|
type Logger interface {
|
|
Errorf(format string, args ...interface{})
|
|
Debugf(format string, args ...interface{})
|
|
Infof(format string, args ...interface{})
|
|
}
|
|
|
|
func init() {
|
|
DefaultLogger = &logger{}
|
|
}
|
|
|
|
type logger struct {
|
|
DebugLevel bool
|
|
}
|
|
|
|
func (l *logger) Errorf(format string, args ...interface{}) {
|
|
log.Printf(format, args...)
|
|
}
|
|
|
|
func (l *logger) Debugf(format string, args ...interface{}) {
|
|
if !l.DebugLevel {
|
|
return
|
|
}
|
|
|
|
log.Printf(format, args...)
|
|
}
|
|
|
|
func (l *logger) Infof(format string, args ...interface{}) {
|
|
log.Printf(format, args...)
|
|
}
|
|
|
|
func Errorf(format string, args ...interface{}) {
|
|
DefaultLogger.Errorf(format, args...)
|
|
}
|
|
|
|
func Debugf(format string, args ...interface{}) {
|
|
DefaultLogger.Debugf(format, args...)
|
|
}
|
|
|
|
func Infof(format string, args ...interface{}) {
|
|
DefaultLogger.Infof(format, args...)
|
|
}
|