mirror of
https://github.com/minio/minio.git
synced 2025-04-04 03:40:30 -04:00
Fix an issue where MinIO was logging every error twice (#8953)
The logging subsystem was initialized under init() method in both gateway-main.go and server-main.go which are part of same package. This created two logging targets and hence errors were logged twice. This PR moves the init() method to common-main.go
This commit is contained in:
parent
07edb7c7f8
commit
15e2ea2c96
@ -17,7 +17,9 @@
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"crypto/x509"
|
"crypto/x509"
|
||||||
|
"encoding/gob"
|
||||||
"errors"
|
"errors"
|
||||||
"net"
|
"net"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
@ -34,6 +36,17 @@ import (
|
|||||||
"github.com/minio/minio/pkg/env"
|
"github.com/minio/minio/pkg/env"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
logger.Init(GOPATH, GOROOT)
|
||||||
|
logger.RegisterError(config.FmtError)
|
||||||
|
|
||||||
|
// Initialize globalConsoleSys system
|
||||||
|
globalConsoleSys = NewConsoleLogger(context.Background())
|
||||||
|
logger.AddTarget(globalConsoleSys)
|
||||||
|
|
||||||
|
gob.Register(StorageErr(""))
|
||||||
|
}
|
||||||
|
|
||||||
func verifyObjectLayerFeatures(name string, objAPI ObjectLayer) {
|
func verifyObjectLayerFeatures(name string, objAPI ObjectLayer) {
|
||||||
if (globalAutoEncryption || GlobalKMS != nil) && !objAPI.IsEncryptionSupported() {
|
if (globalAutoEncryption || GlobalKMS != nil) && !objAPI.IsEncryptionSupported() {
|
||||||
logger.Fatal(errInvalidArgument,
|
logger.Fatal(errInvalidArgument,
|
||||||
|
@ -35,15 +35,6 @@ import (
|
|||||||
"github.com/minio/minio/pkg/env"
|
"github.com/minio/minio/pkg/env"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
|
||||||
logger.Init(GOPATH, GOROOT)
|
|
||||||
logger.RegisterError(config.FmtError)
|
|
||||||
|
|
||||||
// Initialize globalConsoleSys system
|
|
||||||
globalConsoleSys = NewConsoleLogger(context.Background())
|
|
||||||
logger.AddTarget(globalConsoleSys)
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
var (
|
||||||
gatewayCmd = cli.Command{
|
gatewayCmd = cli.Command{
|
||||||
Name: "gateway",
|
Name: "gateway",
|
||||||
|
@ -18,7 +18,6 @@ package cmd
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"encoding/gob"
|
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
@ -37,17 +36,6 @@ import (
|
|||||||
"github.com/minio/minio/pkg/env"
|
"github.com/minio/minio/pkg/env"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
|
||||||
logger.Init(GOPATH, GOROOT)
|
|
||||||
logger.RegisterError(config.FmtError)
|
|
||||||
|
|
||||||
// Initialize globalConsoleSys system
|
|
||||||
globalConsoleSys = NewConsoleLogger(context.Background())
|
|
||||||
logger.AddTarget(globalConsoleSys)
|
|
||||||
|
|
||||||
gob.Register(StorageErr(""))
|
|
||||||
}
|
|
||||||
|
|
||||||
// ServerFlags - server command specific flags
|
// ServerFlags - server command specific flags
|
||||||
var ServerFlags = []cli.Flag{
|
var ServerFlags = []cli.Flag{
|
||||||
cli.StringFlag{
|
cli.StringFlag{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user