mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 13:37:35 +00:00
chore: move the go code into a subfolder
This commit is contained in:
23
apps/api/internal/logstore/emitters/stdout/stdout.go
Normal file
23
apps/api/internal/logstore/emitters/stdout/stdout.go
Normal file
@@ -0,0 +1,23 @@
|
||||
package stdout
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
|
||||
"github.com/zitadel/logging"
|
||||
|
||||
"github.com/zitadel/zitadel/internal/logstore"
|
||||
)
|
||||
|
||||
func NewStdoutEmitter[T logstore.LogRecord[T]]() logstore.LogEmitter[T] {
|
||||
return logstore.LogEmitterFunc[T](func(ctx context.Context, bulk []T) 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
|
||||
})
|
||||
}
|
Reference in New Issue
Block a user