Skip to content

Commit

Permalink
chore: log events by default
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Aug 2, 2024
1 parent 9ae0712 commit 390a02a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# only enable event logging in production
LOG_EVENTS=false

#WORK_DIR=.data
#DATABASE_URI=nwc.db
#NOSTR_PRIVKEY=
Expand All @@ -8,9 +11,6 @@
#FRONTEND_URL=http://localhost:5173
#AUTO_LINK_ALBY_ACCOUNT=false

# set LDK_GOSSIP_SOURCE as empty to not use RGS
#LDK_GOSSIP_SOURCE=

# Alby OAuth configuration
#ALBY_OAUTH_CLIENT_SECRET=
#ALBY_OAUTH_CLIENT_ID=
Expand Down
2 changes: 1 addition & 1 deletion config/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ type AppConfig struct {
AlbyOAuthAuthUrl string `envconfig:"ALBY_OAUTH_AUTH_URL" default:"https://getalby.com/oauth"`
BaseUrl string `envconfig:"BASE_URL" default:"http://localhost:8080"`
FrontendUrl string `envconfig:"FRONTEND_URL"`
LogEvents bool `envconfig:"LOG_EVENTS" default:"false"`
LogEvents bool `envconfig:"LOG_EVENTS" default:"true"`
AutoLinkAlbyAccount bool `envconfig:"AUTO_LINK_ALBY_ACCOUNT" default:"true"`
PhoenixdAddress string `envconfig:"PHOENIXD_ADDRESS"`
PhoenixdAuthorization string `envconfig:"PHOENIXD_AUTHORIZATION"`
Expand Down
3 changes: 2 additions & 1 deletion service/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,9 @@ func (svc *service) launchLNBackend(ctx context.Context, encryptionKey string) e
if err != nil {
logger.Logger.WithError(err).Error("Failed to fetch node info")
}
if info != nil && info.Pubkey != "" {
if info != nil {
svc.eventPublisher.SetGlobalProperty("node_id", info.Pubkey)
svc.eventPublisher.SetGlobalProperty("network", info.Network)
}

svc.eventPublisher.Publish(&events.Event{
Expand Down

0 comments on commit 390a02a

Please sign in to comment.