mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 09:08:43 +08:00
related: https://github.com/milvus-io/milvus/issues/39173 Signed-off-by: shaoting-huang <shaoting.huang@zilliz.com>
71 lines
1.9 KiB
Go
71 lines
1.9 KiB
Go
// Copyright 2023 Zilliz
|
|
//
|
|
// 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 log
|
|
|
|
import "go.uber.org/zap"
|
|
|
|
var (
|
|
// not lint
|
|
Skip = zap.Skip
|
|
Binary = zap.Binary
|
|
Bool = zap.Bool
|
|
Boolp = zap.Boolp
|
|
ByteString = zap.ByteString
|
|
Complex128 = zap.Complex128
|
|
Complex128p = zap.Complex128p
|
|
Complex64 = zap.Complex64
|
|
Complex64p = zap.Complex64p
|
|
Float64 = zap.Float64
|
|
Float64p = zap.Float64p
|
|
Float32 = zap.Float32
|
|
Float32p = zap.Float32p
|
|
Int = zap.Int
|
|
Intp = zap.Intp
|
|
Int64 = zap.Int64
|
|
Int64p = zap.Int64p
|
|
Int32 = zap.Int32
|
|
Int32p = zap.Int32p
|
|
Int16 = zap.Int16
|
|
Int16p = zap.Int16p
|
|
Int8 = zap.Int8
|
|
Int8p = zap.Int8p
|
|
String = zap.String
|
|
Stringp = zap.Stringp
|
|
Uint = zap.Uint
|
|
Uintp = zap.Uintp
|
|
Uint64 = zap.Uint64
|
|
Uint64p = zap.Uint64p
|
|
Uint32 = zap.Uint32
|
|
Uint32p = zap.Uint32p
|
|
Uint16 = zap.Uint16
|
|
Uint16p = zap.Uint16p
|
|
Uint8 = zap.Uint8
|
|
Uint8p = zap.Uint8p
|
|
Uintptr = zap.Uintptr
|
|
Uintptrp = zap.Uintptrp
|
|
Reflect = zap.Reflect
|
|
Namespace = zap.Namespace
|
|
Stringer = zap.Stringer
|
|
Time = zap.Time
|
|
Timep = zap.Timep
|
|
Stack = zap.Stack
|
|
StackSkip = zap.StackSkip
|
|
Duration = zap.Duration
|
|
Durationp = zap.Durationp
|
|
Object = zap.Object
|
|
Inline = zap.Inline
|
|
Any = zap.Any
|
|
)
|