mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-01 14:28:02 +08:00
- Modified Godeps/Godeps.json by hand - [TEST] Updated welcome docs hash to sharness - [TEST] Updated contact doc - [TEST] disabled breaking test (t0080-repo refs local)
21 lines
545 B
Go
21 lines
545 B
Go
package eventlog
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
|
|
"github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/Sirupsen/logrus"
|
|
)
|
|
|
|
// PoliteJSONFormatter marshals entries into JSON encoded slices (without
|
|
// overwriting user-provided keys). How polite of it!
|
|
type PoliteJSONFormatter struct{}
|
|
|
|
func (f *PoliteJSONFormatter) Format(entry *logrus.Entry) ([]byte, error) {
|
|
serialized, err := json.Marshal(entry.Data)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Failed to marshal fields to JSON, %v", err)
|
|
}
|
|
return append(serialized, '\n'), nil
|
|
}
|