1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-12 05:14:10 +02:00

Fixed ability to cancel downloads

This commit is contained in:
Brian Fiete 2019-09-04 10:27:37 -07:00
parent 43c82515fe
commit d26e2957b0
7 changed files with 82 additions and 17 deletions

View file

@ -6292,6 +6292,8 @@ namespace IDE
mVerbosity = .Detailed;
else if (value == "diagnostic")
mVerbosity = .Diagnostic;
else
Fail(scope String()..AppendF("Invalid verbosity option: {}", value));
case "-workspace","-proddir":
var relDir = scope String(value);
if ((relDir.EndsWith("\\")) || relDir.EndsWith("\""))
@ -10465,7 +10467,7 @@ namespace IDE
bool isOutput = (cmd == "msg") || (cmd == "dbgEvalMsg") || (cmd == "log");
if (cmd == "msgLo")
{
if (mVerbosity <= .Diagnostic)
if (mVerbosity < .Diagnostic)
continue;
isOutput = true;
}