remove debug logging

This commit is contained in:
Jeffrey C. Ollie 2024-01-13 00:06:47 -06:00
parent e7d5a97f81
commit 6c60ecd1c6
Signed by: jeff
GPG key ID: 6F86035A6D97044E

View file

@ -48,10 +48,6 @@ pub fn main() !void {
}
if (matches.subcommandMatches("connect")) |connect_matches| {
var it = connect_matches.args.keyIterator();
while (it.next()) |key| {
logz.info().string("key", key.*).log();
}
const config_path = connect_matches.getSingleValue("config") orelse {
try app.displaySubcommandHelp();
return;
@ -107,7 +103,6 @@ pub fn main() !void {
}
var telnet_path = connect_matches.getSingleValue("telnet-command") orelse build_options.telnet_path;
std.log.info("telnet path: {s}", .{telnet_path});
if (!std.fs.path.isAbsolute(telnet_path)) {
const expanded = expandPath(alloc, telnet_path) catch |err| expanded: {