We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c635e2 commit d9668feCopy full SHA for d9668fe
1 file changed
internal/adapters/infrastructure/identity.go
@@ -2,6 +2,7 @@ package infrastructure
2
3
import (
4
"fmt"
5
+ "log/slog"
6
"math/rand/v2"
7
8
"github.com/LXSCA7/gorimpo/internal/core/domain"
@@ -19,6 +20,7 @@ func NewRandomUAFactory(count int) *RandomUAFactory {
19
20
if count == 0 {
21
count = 3
22
}
23
+ slog.Info("🤖 Generating user agents...", "count", count)
24
f.identities = make([]domain.UserAgent, count)
25
f.generate(count)
26
return f
0 commit comments