Preset option for errors & warnings only

This commit is contained in:
Antoni Silvestrovič 2019-03-15 13:02:39 +00:00 committed by GitHub
parent 5ca4a3f559
commit cb3e6f3cf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -1408,6 +1408,12 @@ class Stats {
errors: true,
moduleTrace: true
};
case "errors-warnings":
return {
all: false,
errors: true,
warnings: true
};
default:
return {};
}