diff --git a/CSharp/ExecuteCommand.csharp b/CSharp/ExecuteCommand.csharp index 4a9f7ad..97d05ab 100644 --- a/CSharp/ExecuteCommand.csharp +++ b/CSharp/ExecuteCommand.csharp @@ -29,7 +29,7 @@ namespace AniNIX.Shared { proc.StartInfo.FileName = "/bin/bash"; proc.StartInfo.Arguments = String.Format("-c \'{0}\'",command); proc.StartInfo.UseShellExecute=false; - ReportMessage.Log(Verbosity.Verbose,String.Format("{0} {1}",proc.StartInfo.FileName,proc.StartInfo.Arguments)); + ReportMessage.Log(Verbosity.VeryVerbose,String.Format("{0} {1}",proc.StartInfo.FileName,proc.StartInfo.Arguments)); //Redirect input proc.StartInfo.RedirectStandardOutput=true;