Skip to content

Commit

Permalink
feat: remove ambiguous log entry
Browse files Browse the repository at this point in the history
It remvoes this line:

```
2024-06-17T18:52:49.196708Z  INFO torrust_tracker::bootstrap::jobs: TLS not enabled
```

becuase it doesn't specifu which service the TSl is not enabled for.

On the other hand, the output already indicates whether the service is
runnig on HTTP or HTTPs:

```
2024-06-18T07:37:58.595692Z  INFO HTTP TRACKER: Started on: http://0.0.0.0:7070
```
  • Loading branch information
josecelano committed Jun 18, 2024
1 parent c5cc9fd commit 50bef25
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/bootstrap/jobs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ pub async fn make_rust_tls(opt_tsl_config: &Option<TslConfig>) -> Option<Result<
)
}
None => {
info!("TLS not enabled");
None
}
}
Expand Down

0 comments on commit 50bef25

Please sign in to comment.