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
2
votes
2 answers
Java class loading - which class loader and/or class caused loading?
I'm aware that by using the flag verbose:class, we can get the jvm to log out when a class is loaded and from where. However, I want to see some additional information - which class loader loaded the class, and ideally the class which was being…

AdrianF
- 75
- 1
- 6
2
votes
1 answer
Adding data to an NSDictionary... SRSLY? Isn't there a quicker way?
I'm from a Flash ActionScript background. Where I'm from, I can set a dictionary-like object like this:
var data:Object = {startPoint:5, endPoint:12};
So coming to Objective-C, I was surprised to discover that the equivalent to this appears to…

jowie
- 8,028
- 8
- 55
- 94
2
votes
0 answers
Adding optional debug/verbose output in PHP with minimal footprint
Currently I develop a library in PHP. This library uses it's own namespace. To store global (in the scope of the library's namespace) settings I use a static class, similar to this:
class Settings {
public static $verbose = true;
}
To make…

x-ray
- 3,279
- 5
- 24
- 37
2
votes
2 answers
Java (hotspot) verbose:gc output use in application and process on runtime
Any way to hook on stdout of JVM currently running process or redirect stdout of JVM process to non file location?
I need verbose:gc output of JVM for my application, currently i can see this output in console but unable to store it in database or…

user2978478
- 21
- 2
2
votes
3 answers
Get header values of reply using pycurl
I would like to know some ways to capture and access the header information of the reply when making a request with PyCurl:
c = pycurl.Curl()…

MikA
- 5,184
- 5
- 33
- 42
2
votes
1 answer
Websphere verbose classloading of certain packages
In websphere 7 is there any way to limit the verbose classloading to log only classes from certain packages. Say I want to see only classes which are loaded from package com.mycompany.* ?

Bibin
- 434
- 2
- 5
- 20
2
votes
1 answer
how to change the verbose_name or use original field name in django-taggit tag field
I am using django-taggit for one of my projects and as per the documentation I did the following in the model that i want to use tags / keywords in.
models.py
from taggit.managers import TaggableManager
class SomeModel(models.Model):
title =…

Amyth
- 32,527
- 26
- 93
- 135
2
votes
1 answer
Eclipse Setting verbose:class Flag for Launch Configuration
The java.exe command supports a 'verbose' flag which enables things like seeing from which file a class loads. Does Eclipse supporting setting this flag for a launch configuration?
Here's a site that explains the 'verbose' flag about which I'm…

buzz3791
- 1,683
- 2
- 20
- 38
1
vote
2 answers
Can I get find_package to report what it found?
When we initially configure using CMake, we get some messages about some of our find_package() instructions, e.g.:
-- Found CUDAToolkit: /usr/local/cuda/include (found suitable version "12.0.140", minimum required is "10.1")
or:
-- Found Python:…

einpoklum
- 118,144
- 57
- 340
- 684
1
vote
1 answer
Powershell variable - verbose if it is receiving input
I have created a script that compress files older than N days using PowerShell.
Like this:
param (
$dirPath, `
[int] $daysAgo, `
$logOutput=$dirPath+"\old_reports.log", `
$fileExt
)
$curDate = Get-Date
$timeAgo =…

markfree
- 61
- 6
1
vote
0 answers
What is meant by verbose=10 on cross validate?
I'm running a model with differential evolution to minimize the cross validate score I set verbose=10 in order to get an idea about how long that will take then I'm getting the messages below:
But I don't got any idea what that means. Why is…

Davi Américo
- 135
- 4
1
vote
3 answers
Can't run flutter project due to error VERBOSE.dart error, isolate error
When I try to run my flutter-project code on the iOS simulator in VS code, I get the following error on the console:
Launching lib/main.dart on iPhone 11 Pro in debug mode...
lib/main.dart:1
Xcode build done. …

giannik28
- 403
- 2
- 6
- 14
1
vote
1 answer
Powershell: What's the right way to output full error messages from New-Item?
I'm running a vagrant winrm command, and am noticing that a command that fails doesn't print out the entire error output... I thought | might be used to expand output from such commands... but after some internet searching, and trying a few…

jayunit100
- 17,388
- 22
- 92
- 167
1
vote
1 answer
GitLab CI: No such file or directory: 'GIT_SSH_COMMAND=ssh -vvv'
I want to run git with the verbose attribute. So I want to set the variable GIT_SSH_COMMAND.
GIT_SSH_COMMAND="ssh -vvv"
git clone .....
But I get this error message:
No such file or directory: 'GIT_SSH_COMMAND=ssh -vvv'
How could I solve this. …

ikreb
- 2,133
- 1
- 16
- 35
1
vote
0 answers
cmake dry-run for cmake_link_script
I'm building aws_demos from amazon-freertos repository, and would like to get all the build commands including the link commands in this project. I'm building the project with 'Gnu Makefiles' generator and in order to do so I'm running the following…

sagi
- 523
- 3
- 15