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
0
votes
1 answer

Is there a way to force any function to not be verbose in Python?

While loading a pretrained model with pytorch via model.load_state_dict(torch.load(MODEL_PATH)) the console is flooded with output containing information about the model (which is annoying). Afaik there is no verbosity option, neither in…
justanyphil
  • 138
  • 8
0
votes
0 answers

Get git to tell me where the offending whitespace is?

During a rebase of some git branch of mine, I get a warning saying: /path/to/repo/.git/rebase-apply/patch:21: trailing whitespace. some text in a file here Now, I can go grepping for that string, but - is there a way to make git tell me in which…
einpoklum
  • 118,144
  • 57
  • 340
  • 684
0
votes
1 answer

used-defined verbosity level (alias) for UVM reporting (using uvm_info)

In UVM, there are pre-defined verbosity levels: UVM_DEBUG UVM_FULL UVM_HIGH UVM_MEDIUM UVM_LOW UVM_NONE Actual reporting can be controlled using command line argument, e.g. +UVM_VERBOSITY=UVM_LOW (1) Is there a way to have user-defined verbosity…
GorchM
  • 11
  • 3
0
votes
1 answer

Can I detect ctest verbosity from inside a test?

Is it possible (via querying an environment variable, or otherwise) to detect the verbosity level that ctest is running under, from within a test? Ie, in my test, I would like to know if "-V/--verbose" or "-VV/--extra-verbose" was passed on the…
Paul Molodowitch
  • 1,366
  • 3
  • 12
  • 29
0
votes
2 answers

How to disable ActiveRecord::Migration verbosity?

In short I want to remove the display of the ActiveRecord::Migration.create_table and drop_table functions that I use in an spec file, how can I do that ? (I answered myself, but I still thinks its a good idea to post it, because there is a lack of…
shamox
  • 178
  • 1
  • 5
0
votes
1 answer

How can I prevent webpack from printing long lists of files on each error of a loader (in multi-files entries)

I am migrating a js (es5) only project to webpack + es6 + Typescript. Before migration, all js files were simply concatenated and now I want to start with webpack doing the same. The problem: When the eslint-loader outputs errors I get for each…
Nadav Parag
  • 161
  • 3
0
votes
1 answer

Optimizing WCF Bandwidth Transfer (Reducing Verbosity)

We are currently using WCF for our transfer between our clients and servers. We are using HttpTransportBinding, with BinaryMessageEncoding. The back end is .NET, and the front end is Xamarin (iOS, Android, Windows 10) and Silverlight. We are looking…
Christian Findlay
  • 6,770
  • 5
  • 51
  • 103
0
votes
1 answer

How to make Slick less verbose?

How do you use Slick in less verbose way? Is my approach really bad? I like to have object representation of a database row I am working on. This is only 2 entities related with each other and it took: import java.sql._ import…
Etam
  • 4,553
  • 10
  • 40
  • 60
0
votes
1 answer

Capture Verbose out from Powershell function

I am attempting to call a Powershell function from another Powershell function. The function I am calling has a lot of verbose output and I need to capture them to a file. Since I am calling said function multiple times, I need the verbose outputs…
Rohit Mitra
  • 162
  • 4
  • 13
0
votes
1 answer

SCons Action Verbosity Levels

Given that my Ada builder use a function ada_action which is registered by static_obj.action(suffix, Action(ada_action, print_action_string) which currently calls env.Execute() and further def print_action_string(target, source, env): print…
Nordlöw
  • 11,838
  • 10
  • 52
  • 99
0
votes
2 answers

Disabling output has no effect

I noticed that, under some, unknown to me circumstances, some functions, whether from base R (for example, gc()), or from external packages (for example, getCurlHandle() from RCurl), still produce output, even after explicitly disabling it via…
Aleksandr Blekh
  • 2,462
  • 4
  • 32
  • 64
0
votes
1 answer

Redirection of stdout to console and file with verbosity turned on or off

I have written some code just to practice verbosity in python. Verbosity is embedded by means of the ArgumentParser module. However, I'd also like to write the stdout to file also when verbosity is disabled: #!/usr/bin/python …
user2457613
  • 61
  • 1
  • 6
0
votes
1 answer

How to print debug messages with Junit ant task?

Consider the following junit ant target, abridged for readability: ...
Adam Matan
  • 128,757
  • 147
  • 397
  • 562
0
votes
1 answer

Tips for writing the least verbose Visual C++ code you can in Visual Studio 2005?

While I realize that Visual C++ is a language lacking much of the syntactic-sugar that most of us new programmers are used to these days, VC++ 2005 must have some shortcuts that can decrease the verbosity of the code at least a little; does anyone…
leeand00
  • 25,510
  • 39
  • 140
  • 297
0
votes
3 answers

More verbose error messages with recursive algorithms in Matlab?

BUG: I used cell-arrays in the underlying functions, bad! I cannot understand why restarting Matlab result sometimes into more verbose error messages that help me to actually solve problems. Now I am trying to find a command that makes Matlab…
hhh
  • 50,788
  • 62
  • 179
  • 282
1 2 3
9
10