remove debug logging
This commit is contained in:
parent
e7d5a97f81
commit
6c60ecd1c6
1 changed files with 0 additions and 5 deletions
|
@ -48,10 +48,6 @@ pub fn main() !void {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (matches.subcommandMatches("connect")) |connect_matches| {
|
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 {
|
const config_path = connect_matches.getSingleValue("config") orelse {
|
||||||
try app.displaySubcommandHelp();
|
try app.displaySubcommandHelp();
|
||||||
return;
|
return;
|
||||||
|
@ -107,7 +103,6 @@ pub fn main() !void {
|
||||||
}
|
}
|
||||||
|
|
||||||
var telnet_path = connect_matches.getSingleValue("telnet-command") orelse build_options.telnet_path;
|
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)) {
|
if (!std.fs.path.isAbsolute(telnet_path)) {
|
||||||
const expanded = expandPath(alloc, telnet_path) catch |err| expanded: {
|
const expanded = expandPath(alloc, telnet_path) catch |err| expanded: {
|
||||||
|
|
Loading…
Reference in a new issue