Skip to content

Commit 25ff583

Browse files
committed
log
1 parent 4a950e9 commit 25ff583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbos/dbos.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func NewConfig(programmaticConfig config) *config {
117117

118118
// Load defaults
119119
if len(dbosConfig.databaseURL) == 0 {
120-
getLogger().Info("DBOS_SYSTEM_DATABASE_URL not set, using default: postgres://postgres:${PGPASSWORD}@localhost:5432/dbos?sslmode=disable")
120+
getLogger().Info("Using default database URL: postgres://postgres:${PGPASSWORD}@localhost:5432/dbos?sslmode=disable")
121121
password := url.QueryEscape(os.Getenv("PGPASSWORD"))
122122
dbosConfig.databaseURL = fmt.Sprintf("postgres://postgres:%s@localhost:5432/dbos?sslmode=disable", password)
123123
}

0 commit comments

Comments
 (0)