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

Proposal to change the log file name #74

Open
ndelvalle opened this issue Aug 10, 2020 · 0 comments
Open

Proposal to change the log file name #74

ndelvalle opened this issue Aug 10, 2020 · 0 comments
Labels
enhancement New feature or request

Comments

@ndelvalle
Copy link
Member

The current log file name is: test_2020-08-08--00-48-52.log and is created using this function:

pub fn create_job_name(repository: &str) -> String {
    let repository = repository.replace("/", "-");
    let now = Utc::now().format("%Y-%m-%d--%H-%M-%S").to_string();
    format!("{}_{}", repository, now)
}

There was not research on best patterns to name a log file and what would be best for Subilo, so I'm creating this issue to track possible new formats.

@ndelvalle ndelvalle added the enhancement New feature or request label Aug 10, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant