Documentation ¶
Index ¶
- type FancyEncoder
- func (f *FancyEncoder) AddArray(key string, marshaler zapcore.ArrayMarshaler) error
- func (f *FancyEncoder) AddBinary(key string, value []byte)
- func (f *FancyEncoder) AddBool(key string, value bool)
- func (f *FancyEncoder) AddByteString(key string, value []byte)
- func (f *FancyEncoder) AddComplex128(key string, value complex128)
- func (f *FancyEncoder) AddComplex64(key string, value complex64)
- func (f *FancyEncoder) AddDuration(key string, value time.Duration)
- func (f *FancyEncoder) AddFloat32(key string, value float32)
- func (f *FancyEncoder) AddFloat64(key string, value float64)
- func (f *FancyEncoder) AddInt(key string, value int)
- func (f *FancyEncoder) AddInt16(key string, value int16)
- func (f *FancyEncoder) AddInt32(key string, value int32)
- func (f *FancyEncoder) AddInt64(key string, value int64)
- func (f *FancyEncoder) AddInt8(key string, value int8)
- func (f *FancyEncoder) AddObject(key string, marshaler zapcore.ObjectMarshaler) error
- func (f *FancyEncoder) AddReflected(key string, value interface{}) error
- func (f *FancyEncoder) AddString(key, value string)
- func (f *FancyEncoder) AddTime(key string, value time.Time)
- func (f *FancyEncoder) AddUint(key string, value uint)
- func (f *FancyEncoder) AddUint16(key string, value uint16)
- func (f *FancyEncoder) AddUint32(key string, value uint32)
- func (f *FancyEncoder) AddUint64(key string, value uint64)
- func (f *FancyEncoder) AddUint8(key string, value uint8)
- func (f *FancyEncoder) AddUintptr(key string, value uintptr)
- func (f *FancyEncoder) AppendArray(marshaler zapcore.ArrayMarshaler) error
- func (f *FancyEncoder) AppendBool(b bool)
- func (f *FancyEncoder) AppendByteString(bytes []byte)
- func (f *FancyEncoder) AppendComplex128(c complex128)
- func (f *FancyEncoder) AppendComplex64(c complex64)
- func (f *FancyEncoder) AppendDuration(duration time.Duration)
- func (f *FancyEncoder) AppendFloat32(f2 float32)
- func (f *FancyEncoder) AppendFloat64(f2 float64)
- func (f *FancyEncoder) AppendInt(i int)
- func (f *FancyEncoder) AppendInt16(i int16)
- func (f *FancyEncoder) AppendInt32(i int32)
- func (f *FancyEncoder) AppendInt64(i int64)
- func (f *FancyEncoder) AppendInt8(i int8)
- func (f *FancyEncoder) AppendObject(marshaler zapcore.ObjectMarshaler) error
- func (f *FancyEncoder) AppendReflected(value interface{}) error
- func (f *FancyEncoder) AppendString(s string)
- func (f *FancyEncoder) AppendTime(t time.Time)
- func (f *FancyEncoder) AppendUint(u uint)
- func (f *FancyEncoder) AppendUint16(u uint16)
- func (f *FancyEncoder) AppendUint32(u uint32)
- func (f *FancyEncoder) AppendUint64(u uint64)
- func (f *FancyEncoder) AppendUint8(u uint8)
- func (f *FancyEncoder) AppendUintptr(u uintptr)
- func (f *FancyEncoder) Clone() zapcore.Encoder
- func (f *FancyEncoder) EncodeEntry(entry zapcore.Entry, fields []zapcore.Field) (*buffer.Buffer, error)
- func (f *FancyEncoder) Free()
- func (f *FancyEncoder) OpenNamespace(_ string)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FancyEncoder ¶
type FancyEncoder struct {
// contains filtered or unexported fields
}
func (*FancyEncoder) AddArray ¶
func (f *FancyEncoder) AddArray(key string, marshaler zapcore.ArrayMarshaler) error
func (*FancyEncoder) AddByteString ¶
func (*FancyEncoder) AddComplex128 ¶
func (f *FancyEncoder) AddComplex128(key string, value complex128)
func (*FancyEncoder) AddComplex64 ¶
func (*FancyEncoder) AddDuration ¶
func (*FancyEncoder) AddFloat32 ¶
func (*FancyEncoder) AddFloat64 ¶
func (*FancyEncoder) AddObject ¶
func (f *FancyEncoder) AddObject(key string, marshaler zapcore.ObjectMarshaler) error
func (*FancyEncoder) AddReflected ¶
func (*FancyEncoder) AddUintptr ¶
func (*FancyEncoder) AppendArray ¶
func (f *FancyEncoder) AppendArray(marshaler zapcore.ArrayMarshaler) error
func (*FancyEncoder) AppendBool ¶
func (f *FancyEncoder) AppendBool(b bool)
func (*FancyEncoder) AppendByteString ¶
func (f *FancyEncoder) AppendByteString(bytes []byte)
func (*FancyEncoder) AppendComplex128 ¶
func (f *FancyEncoder) AppendComplex128(c complex128)
func (*FancyEncoder) AppendComplex64 ¶
func (f *FancyEncoder) AppendComplex64(c complex64)
func (*FancyEncoder) AppendDuration ¶
func (*FancyEncoder) AppendFloat32 ¶
func (f *FancyEncoder) AppendFloat32(f2 float32)
func (*FancyEncoder) AppendFloat64 ¶
func (f *FancyEncoder) AppendFloat64(f2 float64)
func (*FancyEncoder) AppendInt16 ¶
func (f *FancyEncoder) AppendInt16(i int16)
func (*FancyEncoder) AppendInt32 ¶
func (f *FancyEncoder) AppendInt32(i int32)
func (*FancyEncoder) AppendInt64 ¶
func (f *FancyEncoder) AppendInt64(i int64)
func (*FancyEncoder) AppendInt8 ¶
func (f *FancyEncoder) AppendInt8(i int8)
func (*FancyEncoder) AppendObject ¶
func (f *FancyEncoder) AppendObject(marshaler zapcore.ObjectMarshaler) error
func (*FancyEncoder) AppendReflected ¶
func (f *FancyEncoder) AppendReflected(value interface{}) error
func (*FancyEncoder) AppendString ¶
func (f *FancyEncoder) AppendString(s string)
func (*FancyEncoder) AppendTime ¶
func (*FancyEncoder) AppendUint ¶
func (f *FancyEncoder) AppendUint(u uint)
func (*FancyEncoder) AppendUint16 ¶
func (f *FancyEncoder) AppendUint16(u uint16)
func (*FancyEncoder) AppendUint32 ¶
func (f *FancyEncoder) AppendUint32(u uint32)
func (*FancyEncoder) AppendUint64 ¶
func (f *FancyEncoder) AppendUint64(u uint64)
func (*FancyEncoder) AppendUint8 ¶
func (f *FancyEncoder) AppendUint8(u uint8)
func (*FancyEncoder) AppendUintptr ¶
func (f *FancyEncoder) AppendUintptr(u uintptr)
func (*FancyEncoder) Clone ¶
func (f *FancyEncoder) Clone() zapcore.Encoder
func (*FancyEncoder) EncodeEntry ¶
func (*FancyEncoder) Free ¶
func (f *FancyEncoder) Free()
Free ... TODO Not being cleaned up. Ignoring this for now as this is a PoC.
func (*FancyEncoder) OpenNamespace ¶
func (f *FancyEncoder) OpenNamespace(_ string)
Click to show internal directories.
Click to hide internal directories.