Tagged Questions
The verbose tag has no wiki summary.
11
votes
1answer
142 views
Powershell: how to implement standard switches?
For things like -WhatIf, we have $PSCmdlet.ShouldProcess() given to us by the [CmdletBinding] attribute. Are there other such tools or practices for implementing common command line arguments such as ...
6
votes
1answer
3k views
How to capture a Powershell CmdLet's verbose output when the CmdLet is programmatically Invoked from C#
BACKGROUND
I am using Powershell 2.0 on Windows 7.
I am writing a cmdlet in a Powershell module ("module" is new to Powershell 2.0).
To test the cmdlet I am writing Unit tests in Visual Studio 2008 ...
4
votes
5answers
1k views
What is good practice for generating verbose output?
what is good practice for generating verbose output? currently, i have a function
bool verbose;
int setVerbose(bool v)
{
errormsg = "";
verbose = v;
if (verbose == v)
return 0;
...
3
votes
2answers
94 views
echo back every Ruby code line like sh -x?
Is there a way to have a ruby script echo back (or log to file I can tail -f) every line executed, similar to bash -x or @echo on in DOS?
ruby -w doesn't do it--only increases verbosity of warnings ...
3
votes
3answers
150 views
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 ...
3
votes
3answers
340 views
How to implement the --verbose or -v option into a python script?
I know the --verbose or -v from several tools and I'd like to implement this into some of my own scripts and tools.
I thought of placeing
if verbose:
print ...
through my source code, so that ...
3
votes
2answers
121 views
How to know if your Unit Test Fixture is “right-sized”?
How do you know if you "Test Fixture" is right-sized. And by "Test Fixture" I mean a class with a bunch of tests in it.
One thing that I've always noticed with my test fixtures is that they get to ...
3
votes
4answers
285 views
Can gcc be configured to not print out a full path in warning/error messages?
When gcc prints out a warning or error, it shows the full path of the file that contains the error. Is there a flag to shorten the output to just the filename?
2
votes
0answers
138 views
R - foreach loops with verbose=TRUE
I am using the doSMP R-package along with foreach loops.
I have specified verbose=TRUE as an optional argument of foreach which is reported to be very useful for trouble shooting. I guess this is ...
2
votes
1answer
202 views
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 ...
2
votes
2answers
1k views
How can I get access to a Django Model field verbose name dynamically?
I'd like to have access to one my model field verbose_name.
I can get it by the field indice like this
model._meta._fields()[2].verbose_name
but I need to get it dynamically. Ideally it would be ...
1
vote
1answer
56 views
Make cURL output STDERR to file (or string)
We're trying to debug some cURL errors on the server, and I would like to see the STDERR log. Currently, all we can see for our error is "error code: 7" and that we can't connect to target server. We ...
1
vote
1answer
40 views
What is Verbose Build
What is a "verbose build" in C? I can's seem to find a good answer. There's a check box in Pelles C for Verbose Build and I can't figure out what this does. Does it include libraries in with the exe ...
1
vote
0answers
36 views
What is the options for antlr.gunit.Interp? How to turn on its verbose option?
I certainly make wrong, but antlr's gunit seems to have no option for the users.
bash-3.2$ java org.antlr.gunit.Interp --help
Exception in thread "main" java.io.FileNotFoundException: --help (No ...
1
vote
2answers
339 views
Conditional OR in makefile
I'd like to enable a verbose compilation in my makefile, but I can't figure out how to make a conditional OR.
Let me explain: I want to be able to specify a verbose compilation either by setting V=1 ...
0
votes
3answers
32 views
Git Tag list, display commit sha1 hashes
so the git tag command lists the current git tags
tag1
tag2
git tag -n prints tag's message
tag1 blah blah
tag2 blah blah
What's the best way to get the hash of tag1 & tag2 ?
Thanks.
0
votes
4answers
69 views
Elegant way for verbose mode in scripts?
When I write bash scripts I usually get the verbose mode this way (simplified):
_V=0
while getopts "v" OPTION
do
case $OPTION in
v) _V=1
;;
esac
done
and then every time I want a ...
0
votes
0answers
42 views
Verbose sqlite database
When I'm doing some inserts, deletes or updates in my sqlite database, using sqlite3 command in Linux I don't know after performing the command what happened, how many rows were deleted, updated, ...
0
votes
1answer
92 views
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 ...
0
votes
2answers
406 views
How can I read the verbose output from a Cmdlet in C# using Exchange Powershell
Environment: Exchange 2007 sp3 (2003 sp2 mixed mode)
Visual Studio 2008, .Net 3.5
I'm working with an Exchange powershell move-mailbox cmdlet and have noted when I do so from the Exchange ...