Skip to content

Commit

Permalink
fix: update default task log path for consistency across environments
Browse files Browse the repository at this point in the history
- Changed the default task log path from '/var/log/crawlab/tasks' to '/app/logs/tasks' to align with the application's directory structure and improve portability in different deployment environments.
  • Loading branch information
tikazyq committed Jan 1, 2025
1 parent 7b6805a commit 7e7ac62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/utils/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

const (
DefaultWorkspace = "crawlab_workspace"
DefaultTaskLogPath = "/var/log/crawlab/tasks"
DefaultTaskLogPath = "/app/logs/tasks"
DefaultServerHost = "0.0.0.0"
DefaultServerPort = 8000
DefaultGrpcHost = "localhost"
Expand Down

0 comments on commit 7e7ac62

Please sign in to comment.