Questions tagged [verbosity]

Verbosity is the amount of information that is logged or printed to console. The most common verbosity levels are error, warning and verbose.

Verbosity is the amount of information that is logged or printed to the user console. High verbosity level tell more but are difficult to analyze. Logging messages usually have the assigned verbosity level that helps to decide if the message should be stored or displayed.

Verbosity levels are found in many implementations of logging.

140 questions
23
votes
1 answer

Maven: How can I stop the deploy plugin from logging upload progress?

How can I make it so Maven doesn't spam upload progress in the Hudson console? Uploading:…
David A.
  • 343
  • 2
  • 8
23
votes
2 answers

Using verbose in Laravel artisan commands

Is there a way to detect what verbosity level the user has specified when creating a custom artisan command? I don't see anything about it in the docs.
Anthony
  • 5,275
  • 11
  • 50
  • 86
17
votes
6 answers

Why does XML have such verbose closing tags?

Yes, this probably shouldn't bug me. But it does!! Why does XML have such verbose closing tags? Not only does it make documents uglier for humans, it needlessly introduces the risk of mismatched (or misspelled!) opening and closing tags. Even if we…
ClosureCowboy
  • 20,825
  • 13
  • 57
  • 71
15
votes
5 answers

What is good practice for generating verbose output?

what is good practice for generating verbose output? currently, i have a function bool verbose; int setVerbose(bool v) { errormsg = ""; verbose = v; if (verbose == v) return 0; else return -1; } and whenever i want…
andreas-h
  • 10,679
  • 18
  • 60
  • 78
14
votes
5 answers

Controlling verbosity of make

I'm using a makefile to compile a program made of many .c files, and any time make is invoked it only compiles those files modified after the last run (nothing special until here). To avoid cluttering my screen, I prepend @ at the beginning of each…
Nicolás Ozimica
  • 9,481
  • 5
  • 38
  • 51
14
votes
1 answer

How to change verbosity of the MSBuild task?

I'd like to have a different verbosity for the msbuild project invoked from the commandline, and those invoked by the MSBuild task from within the project. For example: Inside my.proj:
stijn
  • 34,664
  • 13
  • 111
  • 163
13
votes
6 answers

Usage patterns for private, static, final, public, abstract keywords in java

I know what all of these do except for abstract. I'm currently in the process of teaching myself java with what I consider a middle-school-level education (my highschool was in a bad neighborhood so I got shafted)... But what exactly are the usage…
ThantiK
  • 1,582
  • 4
  • 17
  • 31
12
votes
4 answers

How do I suppress the bloat of useless information when using the DUMP command while using grunt via 'pig -x local'?

I'm working with PigLatin, using grunt, and every time I 'dump' stuffs, my console gets clobbered with blah blah, blah non-info, is there a way to surpress all that? grunt> A = LOAD 'testingData' USING PigStorage(':'); dump A; 2013-05-06…
Matt S.
  • 878
  • 10
  • 21
11
votes
1 answer

Shorthand for referring to Perl/Moose package names?

In both Python and Java we have import to eliminate the repetition of fully-qualified package/module names throughout code. Is there any equivalent in Perl/Moose? I think it would really make Moose nicer to use if we didn't have to repeat…
PBJ
  • 757
  • 8
  • 21
10
votes
1 answer

logging verbosity mysql 5.7

The default log error verbosity is 3 for mysql 5.7. I'm trying to set this to a level of 2 in the cnf file but I'm not sure of the syntax.
user2841861
  • 423
  • 2
  • 8
  • 22
10
votes
2 answers

Is there a simple way to stop GHC from displaying what packages are loaded/linked?

Does this look familiar to anyone? [1 of 1] Compiling Main ( Main.hs, Main.o ) Loading package ghc-prim ... linking ... done. Loading package integer-gmp ... linking ... done. Loading package base ... linking ... done. Loading package…
leftaroundabout
  • 117,950
  • 5
  • 174
  • 319
8
votes
1 answer

How can a test in Python unittest get access to the verbosity level?

When calling a test suite in the Python unittest framework, it is possible to give a -v for higher level of verbosity, like: python3 test_suite.py -v How can a test case get access to the verbosity level ?
EquipDev
  • 5,573
  • 10
  • 37
  • 63
8
votes
3 answers

Making ffmpeg/javacv less verbose in java

I have a Java application that uses ffmpeg library and javacv to load and process video files. I am currently using following code, for loading videofile to my data container. public boolean add(String videofile) { FrameGrabber g = new…
lejlot
  • 64,777
  • 8
  • 131
  • 164
7
votes
1 answer

How to make EF Core migrations less verbose

I am using Entity Framework Core 1.1.0 with migrations. When I run them with dotnet ef database update in Package Manager Console the console is full of applied SQL. Instead of this, I would like to have printed only names of migrations that are…
7
votes
1 answer

Python, unittest: Can one make the TestRunner completely quiet?

Is there a way to make unittest.TextTestRunner completely quiet, meaning it never prints to output on its own? Even at verbosity=0 it prints results when done. I want to process the TestResult object returned by the runner before anything is…
Eskil
  • 3,385
  • 5
  • 28
  • 32
1
2
3
9 10