Skip to content

Commit 91e9f39

Browse files
committed
drop several log sites from info => debug
These logs are user-facing through the UI publication workflow, and are rarely actionable or useful.
1 parent 38c9047 commit 91e9f39

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

crates/connector-init/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub async fn run(
3939
// Now write a byte to stderr to let our container host know that we're alive.
4040
// Whitespace avoids interfering with JSON logs that also write to stderr.
4141
std::io::stderr().write(" ".as_bytes()).unwrap();
42-
tracing::info!(%log_level, port, message = "connector-init started");
42+
tracing::debug!(%log_level, port, message = "connector-init started");
4343

4444
let image = inspect::Image::parse_from_json_file(&image_inspect_json_path)
4545
.context("reading image inspect JSON")?;

crates/connector-init/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ fn main() {
5151
"connector-init crashed with error"
5252
);
5353
}
54-
tracing::info!("connector-init exiting");
54+
tracing::debug!("connector-init exiting");
5555
}

go/flowctl-go/cmd-api-activate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ func (cmd apiActivate) Execute(_ []string) error {
164164
"config": cmd,
165165
"version": mbp.Version,
166166
"buildDate": mbp.BuildDate,
167-
}).Info("flowctl configuration")
167+
}).Debug("flowctl configuration")
168168
pb.RegisterGRPCDispatcher("local")
169169

170170
return cmd.execute(ctx)

go/flowctl-go/cmd-api-await.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ func (cmd apiAwait) Execute(_ []string) error {
107107
"config": cmd,
108108
"version": mbp.Version,
109109
"buildDate": mbp.BuildDate,
110-
}).Info("flowctl configuration")
110+
}).Debug("flowctl configuration")
111111
pb.RegisterGRPCDispatcher("local")
112112

113113
return cmd.execute(ctx)

go/flowctl-go/cmd-api-build.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func (cmd apiBuild) Execute(_ []string) error {
8888
"config": cmd,
8989
"version": mbp.Version,
9090
"buildDate": mbp.BuildDate,
91-
}).Info("flowctl configuration")
91+
}).Debug("flowctl configuration")
9292
pb.RegisterGRPCDispatcher("local")
9393

9494
return cmd.execute(ctx)

go/flowctl-go/cmd-api-delete.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ func (cmd apiDelete) Execute(_ []string) error {
8383
"config": cmd,
8484
"version": mbp.Version,
8585
"buildDate": mbp.BuildDate,
86-
}).Info("flowctl configuration")
86+
}).Debug("flowctl configuration")
8787
pb.RegisterGRPCDispatcher("local")
8888

8989
return cmd.execute(ctx)

go/flowctl-go/cmd-api-discover.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func (cmd apiDiscover) Execute(_ []string) error {
100100
"config": cmd,
101101
"version": mbp.Version,
102102
"buildDate": mbp.BuildDate,
103-
}).Info("flowctl configuration")
103+
}).Debug("flowctl configuration")
104104
pb.RegisterGRPCDispatcher("local")
105105

106106
var resp, err = cmd.execute(ctx)

go/flowctl-go/cmd-api-test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ func (cmd apiTest) Execute(_ []string) error {
144144
"config": cmd,
145145
"version": mbp.Version,
146146
"buildDate": mbp.BuildDate,
147-
}).Info("flowctl configuration")
147+
}).Debug("flowctl configuration")
148148
pb.RegisterGRPCDispatcher("local")
149149

150150
return cmd.execute(ctx)

go/flowctl-go/cmd-journals-split.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ func (cmd cmdJournalsSplit) Execute(_ []string) error {
104104
"config": cmd,
105105
"version": mbp.Version,
106106
"buildDate": mbp.BuildDate,
107-
}).Info("flowctl configuration")
107+
}).Debug("flowctl configuration")
108108
pb.RegisterGRPCDispatcher(gazctlcmd.ShardsCfg.Zone)
109109

110110
return cmd.execute(context.Background())

go/flowctl-go/cmd-shards-split.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ func (cmd cmdShardsSplit) Execute(_ []string) error {
127127
"config": cmd,
128128
"version": mbp.Version,
129129
"buildDate": mbp.BuildDate,
130-
}).Info("flowctl configuration")
130+
}).Debug("flowctl configuration")
131131
pb.RegisterGRPCDispatcher(gazctlcmd.ShardsCfg.Zone)
132132

133133
return cmd.execute(context.Background())

0 commit comments

Comments
 (0)