From 71b6f3e0df9a85c1d3023643ab0367df788b376f Mon Sep 17 00:00:00 2001 From: Stone_Red <56473591+Stone-Red-Code@users.noreply.github.com> Date: Thu, 14 Dec 2023 22:12:30 +0100 Subject: [PATCH] Update `log debug` command description --- HyperbolicDownloader/InputHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HyperbolicDownloader/InputHandler.cs b/HyperbolicDownloader/InputHandler.cs index 327cb2f..0863b49 100644 --- a/HyperbolicDownloader/InputHandler.cs +++ b/HyperbolicDownloader/InputHandler.cs @@ -30,7 +30,7 @@ internal class InputHandler _ = commander.Register(hostCommands.Sync, (HelpText)"Syncs the host list", "sync"); Command logCommand = commander.Register((_) => logCommands.Log(false), (HelpText)"Displays live log.", "log"); - _ = logCommand.Register((_) => logCommands.Log(true), (HelpText)"Displays live log.", "debug"); + _ = logCommand.Register((_) => logCommands.Log(true), (HelpText)"Displays live debug log.", "debug"); Command getCommand = commander.Register(downloadCommands.GetFile, (HelpText)"Attempts to retrieve a file from another host using a hash.", "get"); _ = getCommand.Register(downloadCommands.GetFileFrom, (HelpText)"Attempts to retrieve a file from another host using a .hyper file.", "from");