Questions tagged [verbose]

Verbose programs explain their intentions, behavior and results with a high level of detail. It's typically the opposite to silent.

163 questions
0
votes
1 answer

Verbose mode to debug the google cloud connectivity from java

I want to connect to google cloud storage bucket from java or any other way and want to capture the route taken from source to destination and debug where the packets are getting blocked . Thanks in advance !
Aman Mittal
  • 61
  • 3
  • 10
0
votes
0 answers

How to stop gstreamer elements from printing to stdout?

Some of the gstreamer elements that I use keep spamming "useless" (a matter of opinion) information to stdout, anyway of muting a specific gstreamer element?
Jimmy Pettersson
  • 465
  • 4
  • 13
0
votes
1 answer

how to change gmock verbosity level

I want to change gmock warnings into errors in all uninteresting gmock function calls. I search some and I found that i should use --gmock_verbose=LEVEL flag but where should I add this flag? Unfortunately I couldn't change all NiceMocks to…
0
votes
0 answers

Removing the duplicate values while populating the dropdown

I am using the following code to remove the duplicates from a list of email id's while populating the dropdown. If circleList contains 10 records and has 3 duplicates, then those 3 are replaced with an empty string (i.e., still showing 10 records)…
0
votes
0 answers

C++ Libcurl catch verbose data not working properly

I want to catch the verbose data which is printed to STDERR in Libcurl (C++). However, I can only point to a file when I want to change CURLOPT_STDERR. Of course, I could point to a file, dump the data, read the file and remove the file, but that…
TVA van Hesteren
  • 1,031
  • 3
  • 20
  • 47
0
votes
1 answer

Does scons support verbose mode and asian language?

I tried scons --verbose scons -verbose Seems both gave me the version information, not the verbose mode. I wish to look into some more details on how scons build my project. Is there a command line for this? I know python support asian…
Troskyvs
  • 7,537
  • 7
  • 47
  • 115
0
votes
1 answer

How to display cURL progress bar in browser (using PHP exec() function)

I'm using this tiny PHP code in order to mirror any files into my server. But the browser is freezing until the mirroring process gets finished. My…
PersianHero
  • 87
  • 2
  • 10
0
votes
1 answer

Unused argument error in EpiR

I'm getting an unused argument error in the following code: epi.tests(dat4, verbose = TRUE) # Error in epi.tests(dat4, verbose = TRUE) : # unused argument (verbose = TRUE) What could be causing this and how could I fix the issue? Thanks
0
votes
1 answer

Powershell Standard Verbose to a variable

I've written a script that is like this, I use the $output1 in order to redirect the output of the standard verbose. $output1 = $( cmdlet1 [Some Parameters] -Verbose | % { cmdlet2 [Other Some Parameters] -Verbose } ) 4>&1 When I do…
Hari
  • 191
  • 1
  • 2
  • 13
0
votes
0 answers

PHPUnit test...to run in verbose mode in Symfony

I want to run the phpunit test for my bundle tests in Symfony, and I have tried in the below way: phpunit --verbose src\MyNameSpace\MyAppBundle\Tests\Controller\BadDataPostUnitTestControllerTest but the error I am seeing : Fatal error: Class…
aniruddha
  • 689
  • 8
  • 29
0
votes
2 answers

is it possible to see verbose of downloaded application of google play store?

I want to see the Error of my uploaded application on google play store.It is having some issues and i want to debug that issue. Is it possible to debug that issue? Thanks in advance.
Sundeep Badhotiya
  • 810
  • 2
  • 9
  • 14
0
votes
1 answer

Automatically return verbose results in Python unittest?

I know that I can add the "-v" to the command line when running a unit test in Python, but how can I modify the following code so that the output is automatically verbose? I tried several variations of adding -v to the unittest.main() call, with no…
SmrtGrunt
  • 869
  • 12
  • 25
0
votes
2 answers

What is the invoke-sqlcmd verbose output to file syntax?

I currently have: (invoke-sqlcmd -inputfile (Join-Path $FileDirectory $FileName) -ServerInstance $ServerName -verbose) > $OutFileName To which I'm getting the output: VERBOSE: Changed database context to 'BLUELABEL' I'm trying to use the verbose…
obizues
  • 1,473
  • 5
  • 16
  • 30
0
votes
1 answer

How to cause/stop Android ndk-build to display build steps

I am using the Android NDK to build a project. This morning the output of ndk-build started displaying tons of output as if I had set a flag somewhere to debug the make process. Below is part of the log, showing where this output starts. The…
Sam
  • 128
  • 9
0
votes
1 answer

Best practice for Verbose output of batch job I created with RESTful request

For testing purpose I am creating a URL that users can hit to manually kickoff a batch processing job on the backend. I then shoot back some debug data to the user so they can see it in their browser. Right now I literally just pass a string…
Adam James
  • 3,833
  • 6
  • 28
  • 47
1 2 3
10
11