Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure log file directory exists before creating the log file #1831

Merged
merged 1 commit into from
Sep 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/core/common/logger/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,16 @@ func NewLogger(config Config) *zerolog.Logger {
Compress: config.Compress,
}

// Ensure the log file directory exists before creating the log file
dir := filepath.Dir(config.LogFilePath)
if _, err := os.Stat(dir); os.IsNotExist(err) {
// Create the directory if it does not exist
err = os.MkdirAll(dir, 0755) // Set permissions as needed
if err != nil {
log.Fatal().Msgf("Failed to create log directory: %v", err)
}
}

// Ensure the log file exists before changing its permissions
if _, err := os.Stat(config.LogFilePath); os.IsNotExist(err) {
// Create the log file if it does not exist
Expand Down