fix: update default task log path for consistency across environments

- 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.
This commit is contained in:
Marvin Zhang
2025-01-01 11:54:48 +08:00
parent 7b6805a834
commit 7e7ac621ec

View File

@@ -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"