20 lines
416 B
Go
20 lines
416 B
Go
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// Licensed under the MIT License. See the LICENSE file in the project root for license information.
|
||
|
|
||
|
package logutil
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
type Fields map[string]interface{}
|
||
|
|
||
|
func (f Fields) String() string {
|
||
|
var s string
|
||
|
for k, v := range f {
|
||
|
if sv, ok := v.(string); ok {
|
||
|
v = fmt.Sprintf("%q", sv)
|
||
|
}
|
||
|
s += fmt.Sprintf(" %s=%v", k, v)
|
||
|
}
|
||
|
return s
|
||
|
}
|