Skip to content

Commit

Permalink
console log fix
Browse files Browse the repository at this point in the history
  • Loading branch information
et-nik committed Feb 25, 2024
1 parent bc56c8d commit 023ac47
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion internal/app/di/internal/definitions/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func CreateServicesAPICaller(ctx context.Context, c Container) contracts.APIRequ
}

func CreateServicesExecutor(_ context.Context, _ Container) contracts.Executor {
return components.NewExecutor()
return components.NewCleanExecutor()
}

func CreateServiceExtendableExecutor(ctx context.Context, c Container) contracts.Executor {
Expand Down
2 changes: 1 addition & 1 deletion internal/processmanager/systemd.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const (
statusNotRunning = 3
statusServiceUnknown = 4

outputSizeLimit = 10000
outputSizeLimit = 30000
)

type SystemD struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/processmanager/tmux.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

const (
defaultWidth = 200
defaultHistoryLimit = 1000
defaultHistoryLimit = 30000
)

type Tmux struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/processmanager/winsw.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const (
servicesConfigPath = "C:\\gameap\\services"
servicePrefix = "gameapServer"

outputSizeLimit = 10000
outputSizeLimit = 30000
)

type WinSW struct {
Expand Down

0 comments on commit 023ac47

Please sign in to comment.