mirror of
https://github.com/siderolabs/talos.git
synced 2025-09-14 18:31:10 +02:00
Add JSON over TCP support. Add support for multiple loggers. Make logging configurable. Signed-off-by: Alexey Palazhchenko <alexey.palazhchenko@talos-systems.com>
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
package logging
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/talos-systems/talos/internal/app/machined/pkg/runtime"
|
|
)
|
|
|
|
// NullLoggingManager sends all the logs to /dev/null.
|
|
type NullLoggingManager struct{}
|
|
|
|
// NewNullLoggingManager initializes NullLoggingManager.
|
|
func NewNullLoggingManager() *NullLoggingManager {
|
|
return &NullLoggingManager{}
|
|
}
|
|
|
|
// ServiceLog implements LoggingManager.
|
|
func (*NullLoggingManager) ServiceLog(id string) runtime.LogHandler {
|
|
return &nullLogHandler{}
|
|
}
|
|
|
|
// SetSenders implements runtime.LoggingManager interface (by doing nothing).
|
|
func (*NullLoggingManager) SetSenders([]runtime.LogSender) []runtime.LogSender {
|
|
return nil
|
|
}
|
|
|
|
type nullLogHandler struct{}
|
|
|
|
func (*nullLogHandler) Writer() (io.WriteCloser, error) {
|
|
return os.OpenFile(os.DevNull, os.O_WRONLY, 0)
|
|
}
|
|
|
|
func (*nullLogHandler) Reader(...runtime.LogOption) (io.ReadCloser, error) {
|
|
return os.OpenFile(os.DevNull, os.O_RDONLY, 0)
|
|
}
|