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
3
votes
1 answer

WEBrick rails server verbosity

Is there a way to start the WEBrick server with no verbosity. I feel like it logs too much information. For example: rails s --verbose=false
Dillon Benson
  • 4,280
  • 4
  • 23
  • 25
3
votes
3 answers

Make Ruby console execution more verbose

I want to watch the flow the execution of my ruby code when I am in the console. For example, if I have this : def process hash = {a:1,b:2} hash.values.map!{|e| e+1} end And I want to see something like this in console when I type process…
Hartator
  • 5,029
  • 4
  • 43
  • 73
3
votes
2 answers

Django - How can I set/change the verbose name of Djangos User-Model attributes?

I'm building a website which contains several languages. Therefore I need to set verbose names of all attributes in all my model classes (with the internationalizaton-helper). Unfortunately I don't find a way to change the verbose names of the user…
Ron
  • 22,128
  • 31
  • 108
  • 206
2
votes
1 answer

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 such file or directory) at…
zell
  • 9,830
  • 10
  • 62
  • 115
2
votes
2 answers

Can I make "bash -x" not print the "+ " prefix?

When I invoke bash with the -x option, it prints each command before it is executed. However - the commands are printed with a "+ " prefix. Is there a way to get it to print the commands, but without this prefix? With -x or without it?
einpoklum
  • 118,144
  • 57
  • 340
  • 684
2
votes
0 answers

Is it possible to show a progress bar or an ETA during the validation part of Keras fit_generator()

I am using a generator to create batches for my model and therefore use the model.fit_generator() Keras function. Using verbose=1 (default option) I get a progress bar and an ETA during the training procedure which is quite helpful to evaluate how…
Wise Cloud
  • 411
  • 4
  • 5
2
votes
1 answer

Capture verbose stream without enabling -Verbose

Maybe there's no way to do this in PowerShell. If I have the file verboseTest.ps1 [CmdletBinding()] # CmdletBinding attribute enables -verbose flag Param() Write-Verbose 'verbose test' If I call .\verboseTest.ps1, I see nothing as expected. If I…
Pxtl
  • 880
  • 8
  • 18
2
votes
1 answer

How can I log everything that is written in powershell window?

I am needing to create a logfile for every action that is performed by this script. I have attempted to use redirection(>>) however, cannot get the output to actually write to the file. while($true){ $FromMC = Get-ChildItem -Path "\\x\From MC"…
2
votes
2 answers

is there a clean, concise way to push/pop bash verbose and xtrace options for a funtion?

(Linux bash 4.1.2) I have a bash function calling another function. The low level function wants to have -xv set for debugging, but I don't want it to mess with the values of x and v in the parent function. I.e. I want the child function to push…
George Young
  • 355
  • 3
  • 10
2
votes
0 answers

When parallel processing in caret, verbose messages do not appear in the console

I've worked in R and a question arose. I've made up an R code using the train() function in caret library, and I also set the parallel process by registDoParallel() in doParallel. If I execute without parallel processing, then verbose messages arise…
2
votes
3 answers

-Verbose not working with my Pester Test in PowerShell

I wrote a pester test to check that certain folders and files exist. The pester test works great but I wanted to include suggestions for fixes if the test is called with the -Verbose option. But I can't seem to get the -Verbose parameter to the…
Keith
  • 689
  • 10
  • 27
2
votes
1 answer

P4Python use argument -I Indicators

I would like to use the -I argument to know what is happening other than just exceptions when I sync using p4python. The website says I can use -I for progress indicators as a console command, particularly with p4 -I sync -q. This works in console,…
Goose
  • 23
  • 3
2
votes
1 answer

Can't enable DEBUG & VERBOSE for Huawei Android Logcat

I'm having Huawei Nova Plus I just found that Huawei only displays in its Android log starting log level INFO. Of course I need DEBUG & VERBOSE in my development. I came across this link which is exactly same screens appear to me and I mark the 3…
2
votes
1 answer

Scapy verbose mode documentation

I understand that: conf.verb = 0 Disables Scapy verbose mode but where is the documentation to confirm this? My googling has failed me.
Proletariat
  • 213
  • 5
  • 10
2
votes
2 answers

std::regex ignore whitespace inside regex command

Can we format a std::regex string with whitespace/linebreak which get ignored - just for better reading? Is there any option available like in Python VERBOSE)? Without verbose: charref = re.compile("&#(0[0-7]+" "|[0-9]+" …
Viatorus
  • 1,804
  • 1
  • 18
  • 41