mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
24 lines
478 B
Go
24 lines
478 B
Go
|
package stdout
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"encoding/json"
|
||
|
|
||
|
"github.com/zitadel/logging"
|
||
|
|
||
|
"github.com/zitadel/zitadel/internal/logstore"
|
||
|
)
|
||
|
|
||
|
func NewStdoutEmitter() logstore.LogEmitter {
|
||
|
return logstore.LogEmitterFunc(func(ctx context.Context, bulk []logstore.LogRecord) error {
|
||
|
for idx := range bulk {
|
||
|
bytes, err := json.Marshal(bulk[idx])
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
logging.WithFields("record", string(bytes)).Info("log record emitted")
|
||
|
}
|
||
|
return nil
|
||
|
})
|
||
|
}
|