blob: f3ca598a3ab94cf3be5ec9473e868c54eb22a592 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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 log
import (
"fmt"
v1 "github.com/apache/camel-k/pkg/apis/camel/v1"
"github.com/apache/camel-k/pkg/apis/camel/v1alpha1"
"github.com/go-logr/logr"
logf "sigs.k8s.io/controller-runtime/pkg/log"
)
// Log --
var Log Logger
func init() {
Log = Logger{
delegate: logf.Log.WithName("camel-k"),
}
}
// Injectable identifies objects that can receive a Logger
type Injectable interface {
InjectLogger(Logger)
}
// Logger --
type Logger struct {
delegate logr.Logger
}
// Debugf --
func (l Logger) Debugf(format string, args ...interface{}) {
l.delegate.V(1).Info(fmt.Sprintf(format, args...))
}
// Infof --
func (l Logger) Infof(format string, args ...interface{}) {
l.delegate.Info(fmt.Sprintf(format, args...))
}
// Errorf --
func (l Logger) Errorf(err error, format string, args ...interface{}) {
l.delegate.Error(err, fmt.Sprintf(format, args...))
}
// Debug --
func (l Logger) Debug(msg string, keysAndValues ...interface{}) {
l.delegate.V(1).Info(msg, keysAndValues...)
}
// Info --
func (l Logger) Info(msg string, keysAndValues ...interface{}) {
l.delegate.Info(msg, keysAndValues...)
}
// Error --
func (l Logger) Error(err error, msg string, keysAndValues ...interface{}) {
l.delegate.Error(err, msg, keysAndValues...)
}
// WithName --
func (l Logger) WithName(name string) Logger {
return Logger{
delegate: l.delegate.WithName(name),
}
}
// WithValues --
func (l Logger) WithValues(keysAndValues ...interface{}) Logger {
return Logger{
delegate: l.delegate.WithValues(keysAndValues...),
}
}
// ForBuild --
func (l Logger) ForBuild(target *v1.Build) Logger {
return l.WithValues(
"api-version", target.APIVersion,
"kind", target.Kind,
"ns", target.Namespace,
"name", target.Name,
)
}
// ForIntegration --
func (l Logger) ForIntegration(target *v1.Integration) Logger {
return l.WithValues(
"api-version", target.APIVersion,
"kind", target.Kind,
"ns", target.Namespace,
"name", target.Name,
)
}
// ForIntegrationKit --
func (l Logger) ForIntegrationKit(target *v1.IntegrationKit) Logger {
return l.WithValues(
"api-version", target.APIVersion,
"kind", target.Kind,
"ns", target.Namespace,
"name", target.Name,
)
}
// ForIntegrationPlatform --
func (l Logger) ForIntegrationPlatform(target *v1.IntegrationPlatform) Logger {
return l.WithValues(
"api-version", target.APIVersion,
"kind", target.Kind,
"ns", target.Namespace,
"name", target.Name,
)
}
// ForKamelet --
func (l Logger) ForKamelet(target *v1alpha1.Kamelet) Logger {
return l.WithValues(
"api-version", target.APIVersion,
"kind", target.Kind,
"ns", target.Namespace,
"name", target.Name,
)
}
// ForKameletBinding --
func (l Logger) ForKameletBinding(target *v1alpha1.KameletBinding) Logger {
return l.WithValues(
"api-version", target.APIVersion,
"kind", target.Kind,
"ns", target.Namespace,
"name", target.Name,
)
}
// ***********************************
//
// Helpers
//
// ***********************************
// WithName --
func WithName(name string) Logger {
return Log.WithName(name)
}
// WithValues --
func WithValues(keysAndValues ...interface{}) Logger {
return Log.WithValues(keysAndValues...)
}
// ForIntegration --
func ForIntegration(target *v1.Integration) Logger {
return Log.ForIntegration(target)
}
// ForIntegrationKit --
func ForIntegrationKit(target *v1.IntegrationKit) Logger {
return Log.ForIntegrationKit(target)
}
// ForIntegrationPlatform --
func ForIntegrationPlatform(target *v1.IntegrationPlatform) Logger {
return Log.ForIntegrationPlatform(target)
}
// ***********************************
//
//
//
// ***********************************
// Debugf --
func Debugf(format string, args ...interface{}) {
Log.Debugf(format, args...)
}
// Infof --
func Infof(format string, args ...interface{}) {
Log.Infof(format, args...)
}
// Errorf --
func Errorf(err error, format string, args ...interface{}) {
Log.Errorf(err, format, args...)
}
// Debug --
func Debug(msg string, keysAndValues ...interface{}) {
Log.Debug(msg, keysAndValues...)
}
// Info --
func Info(msg string, keysAndValues ...interface{}) {
Log.Info(msg, keysAndValues...)
}
// Error --
func Error(err error, msg string, keysAndValues ...interface{}) {
Log.Error(err, msg, keysAndValues...)
}