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
4
votes
2 answers
Artisan error logging verbose level
I have the following error when I try to run the artisan command php artisan route:list:
[Symfony\Component\Debug\Exception\FatalErrorException]
Call to a member function getAction() on a non-object
Because I have no idea where this happens, I'm…

Terrabythia
- 2,031
- 3
- 19
- 29
4
votes
2 answers
python bottle framework - run in silent (non-verbose) mode - how?
I am learning to use the python bottle web framework. I have developed a simple app and I would like to suppress all the requests (urls) output on the terminal (though if there are any error msgs, their output should be ok). I tried setting the…

G.A.
- 1,443
- 2
- 22
- 34
3
votes
1 answer
Under what conditions does find_package() print a message?
The CMake find_package() command sometimes prints a message, indication that the package has been found, and possibly the found version.
What are the condition(s) for this message being printed, other than QUIET not being used?
Note: Asking about…

einpoklum
- 118,144
- 57
- 340
- 684
3
votes
3 answers
java -verbose does not give a file location for every class
We are trying to debug some mean classloader issues with our WAS (Websphere Application Server) instance.
For this we provided the option -verbose:class in order to see which class WAS is loading where from.
For most classes we get output like…

Jens Schauder
- 77,657
- 34
- 181
- 348
3
votes
4 answers
Verbose List Comprehension in Haskell
I'm using Haskell to find a list of integers from 1 to 10000 that have a special property. I do the following
[ number | number <- [1..10000], (isSpecial number)]
However, every now and then I came up with some special properties that are
hard to…

Student
- 400
- 3
- 10
3
votes
1 answer
Is there a way to get git commit --verbose to show an updated diff when using pre-commit hooks?
So I'm currently setting up a git pre-commit hook to lint my python files with iSort, and python Black, the issue I'm running into is that when I use git commit --verbose the diff that shows up in the commit editor hasn't actually taken the…

DJ SymBiotiX
- 187
- 2
- 12
3
votes
0 answers
Get full stack trace out of grails run-script in grails project
I run grails run-script and I get a stacktrace that is 78-deep or more. It only shows part of it.For example:
Caused by: org.gradle.process.internal.ExecException: Process 'command…

Calicoder
- 1,322
- 1
- 19
- 37
3
votes
1 answer
How do I enable "debug" logging of the Docker daemon? (Ubuntu 16.04)
I want to set the verbosity level of the docker deamon in ubuntu 16.04)
Docker version = 1.12.6
The following didn't work:
/etc/docker/daemon.json, setting"debug": true (can not find the file)
docker -d (error docker flag provided but not defined…

HerbalMart
- 1,669
- 3
- 27
- 50
3
votes
1 answer
Implementing verbose in C
I'm implementing a verbose mode. Here's what I attempt to do : defining a global variable VERBOSE (in verbose.h) in such way that files requiring verbose only need to include that file. For example :
verbose.h:
void setVerbose(int…

Eamnea
- 61
- 1
- 7
3
votes
2 answers
Where can I find a description of vim's verbose levels/settings?
I've been searching through vim's help, but haven't been able to find a list of all the verbose levels and what is output by each level.
After playing around and reading the docs, I've found:
0 - when vim is not started with -V, verbose is set to…

nfarrar
- 2,291
- 4
- 25
- 33
3
votes
1 answer
Alter behaviour of every cmdlet in Powershell session to pass verbose flag
If I wanted to alter the behaviour of every cmdlet in a Powershell session to pass verbose flag I could achieve this in Powershell v3 with $PSDefaultParameterValues like so
$PSDefaultParameterValues['*:Verbose'] = $true
What would be a possible…

user1054637
- 695
- 11
- 28
3
votes
1 answer
Verbose regular expressions in PHP?
Searching on php.net I was not able to find any support for verbose regular expressions in php. Is this my fault for not knowing how to search for it, or is it php's fault for not implementing it?
If this feature is lacking from php, is there any…

DudeOnRock
- 3,685
- 3
- 27
- 58
3
votes
1 answer
Redirecting the shell output to a file
I am working on AIX 6 where I am running a java command on a Korn Shell and I am trying to debug the class loading issue. I put -verbose:class to print the class loaded and then >>/home/user/log.log to get the console out put in a file. The log.log…

Manu
- 453
- 2
- 6
- 15
3
votes
3 answers
How to see the current running Linux processes output^
I have several Linux (Ubuntu 10.04) processes running on my computer. If I start one of them, I can see the verbose of it on my terminal. I have an other process that start a dozen of those processes so that they run in background. However, I would…

JLavoie
- 16,678
- 8
- 33
- 39
3
votes
1 answer
php cURL CURLOPT_VERBOSE not showing payload
While the below output from curl provides useful header information, it does not provide the payload information. For example, I would want to see {"jason_index","json_value"} in the debug information provided.
1.) Is it possible to display the…

ipatenco
- 57
- 1
- 1
- 7