Verbose programs explain their intentions, behavior and results with a high level of detail. It's typically the opposite to silent.
Questions tagged [verbose]
163 questions
11
votes
2 answers
Powershell apply verbosity at a global level
Imagine if you have a script containing a single line of code like
ni -type file foobar.txt
where the -verbose flag is not supplied to the ni command. Is there a way to set the Verbosity at a global PSSession level if I were to run this script to…

user1054637
- 695
- 11
- 28
10
votes
1 answer
The use of model field "verbose name"
If I have a web app that use only one language and it is not English, is that correct to use model field verbose_name attribute for the field description (that will be printed in form)? I dont use the translation modules.

user3599803
- 6,435
- 17
- 69
- 130
9
votes
3 answers
verbose name app in django admin interface
In the Django administration Interface, we have our models grouped by app. Well, I known how to customize the model name:
class MyModel (models.Model):
class Meta:
verbose_name = 'My Model'
verbose_name_plural = 'My Models'
But I…

Salias
- 480
- 6
- 19
8
votes
1 answer
verbose rakefile - print all executed command lines to stdout
I've just began building my first Rakefile (Ruby version of makefile), and I'd like to debug my script easily using verbose mode (like makefile -V or bash -x) is there an option to do so on ruby ?
thanks

Zohar81
- 4,554
- 5
- 29
- 82
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…

Koteczeg
- 161
- 2
- 16
7
votes
1 answer
Verbose log abbriviations meaning in SVC, scikit-learn
I am looking for the meaning of verbose log abbriviations of SVC function in scikit-learn?
If nSV is the number of support vectors, #iter is the number of iteration, what dose nBSV, rho,obj mean?
This is an example:
import numpy as np
from…

Ahmad Sultan
- 1,621
- 2
- 13
- 19
7
votes
1 answer
Verbose cmake: How to get more diagnostics?
I am getting some strange error from cmake :
loading initial cache file ../../Tweaks/compiler-rt/arm.txt
-- Performing Test COMPILER_RT_HAS_FPIE_FLAG
CMake Error at CMakeLists.txt:2 (set):
Syntax error in cmake code at
…

Serge Rogatch
- 13,865
- 7
- 86
- 158
6
votes
1 answer
Changing Verbose colors in PowerShell 7.2
I expected the following code to print verbose text with my default foreground color:
$Host.PrivateData.VerboseForegroundColor = [console]::ForegroundColor
Write-Verbose 'Test' -Verbose
However, it prints yellow text as usual. Changing the Error…

Vopel
- 662
- 6
- 11
6
votes
2 answers
Pycharm running unittest in verbose mode
Is there a way to run unittests in pycharm in verbose mode. I am looking for a way to see the docstring in the test functions so that i can see some info of the ran test.
class KnownValues(unittest.TestCase):
known_values = (
([1,…

Bl4ckC4t
- 104
- 1
- 10
6
votes
0 answers
Different behaviour of javaws with and without verbose option
I experience quite a mysterious issue with javaws utility and don't know how should I proceed with investigation of the root cause.
Here is the information I managed to gather:
$ cat /etc/os-release
ID=wrlinux
NAME=Wind River…

dragonator
- 137
- 5
- 14
5
votes
2 answers
PowerShell ignoring Write-Verbose while running Import-Module
For presenting the problem, I have this simple script saved as PowerShell module (test.psm1)
Write-Verbose 'Verbose message'
In real life, it includes command to import additional functions, but that is irrelevant at the moment.
If I run…

Igor
- 1,349
- 12
- 25
4
votes
1 answer
Is there a verbose mode available in Flurry?
Given that it apparently takes hours for a Flurry "event" to make it to appear on their web server, debugging is kind of slow. It would be most advantageous if there were some sort of "verbose" mode that would cause Flurry events to be logged to…

Hot Licks
- 47,103
- 17
- 93
- 151
4
votes
4 answers
Looking for a (pseudo) XSLT preprocessor/templater to make it less verbose
Does anybody know of a preprocessor for XSLT to make it less verbose? Something like what SASS is to CSS, a little proggy that will take light syntax:
"/":
{
My book collection
{@ "//media"}
…

frenchone
- 1,547
- 4
- 19
- 34
4
votes
1 answer
Change Verbose default color
The default color of verbose output (e.g. Write-Verbose or -Verbose switch) in Powershell is yellow. This makes it look like warnings, although it's non-critical.
How can I change the default color of verbose output?

marsze
- 15,079
- 5
- 45
- 61
4
votes
3 answers
How to make the output less verbose in Pytest?
I am running pytest with tavern for a small testing API project.
Failing a test, throws me a bunch of verbose errors plus the response I am expecting to get (why it failed). How can I make pytest less verbose?
I tried
pytest --tb=short,
pytest…

Andrei B
- 57
- 2
- 4