Skip to content

Commit fbb0484

Browse files
committed
logs cleanup
1 parent 71dba84 commit fbb0484

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

dbos/conductor.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ func NewConductor(config ConductorConfig, dbosCtx *dbosContext) (*Conductor, err
108108
// Start with needsReconnect set to true so we connect on first run
109109
c.needsReconnect.Store(true)
110110

111-
c.logger.Info("Conductor created")
112111
return c, nil
113112
}
114113

dbos/dbos.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,13 +295,11 @@ func NewDBOSContext(inputConfig Config) (DBOSContext, error) {
295295
initExecutor.applicationVersion = os.Getenv("DBOS__APPVERSION")
296296
if initExecutor.applicationVersion == "" {
297297
initExecutor.applicationVersion = computeApplicationVersion()
298-
initExecutor.logger.Info("DBOS__APPVERSION not set, using computed hash")
299298
}
300299

301300
initExecutor.executorID = os.Getenv("DBOS__VMID")
302301
if initExecutor.executorID == "" {
303302
initExecutor.executorID = "local"
304-
initExecutor.logger.Info("DBOS__VMID not set, using default", "executor_id", initExecutor.executorID)
305303
}
306304

307305
initExecutor.applicationID = os.Getenv("DBOS__APPID")

0 commit comments

Comments
 (0)