mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
681541f41b
adds possibilities to cap authenticated requests and execution seconds of actions on a defined intervall
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
|
|
})
|
|
}
|