We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1451a8 commit de0392aCopy full SHA for de0392a
CHANGELOG.md
@@ -1,6 +1,10 @@
1
Master
2
======
3
4
+Bug fixes
5
+-----
6
+- Fixed bug that caused ntp-ctl validate to not print warnings on the configuration, only parsing errors.
7
+
8
Version 0.3.5
9
10
ntp-ctl/src/lib.rs
@@ -56,6 +56,11 @@ enum PrintState {
56
}
57
58
async fn validate(cli: Cli) -> std::io::Result<ExitCode> {
59
+ // Late completion not needed, so ignore result.
60
+ let _ = ntp_daemon::tracing::init(
61
+ tracing_subscriber::EnvFilter::new("info"),
62
+ Default::default(),
63
+ );
64
match Config::from_args(cli.config, vec![], vec![]).await {
65
Ok(config) => {
66
if config.check() {
0 commit comments