140 questions
2
votes
2
answers
99
views
powershell compress-archive verbose output to text file
I have a powershell command that I want to execute and direct the verbose output to a text file.
Compress-Archive -Path $currentLogDir_TempPathString -DestinationPath $currentLogDir_ArchiveFileName -...
1
vote
0
answers
87
views
How to lower pandoc verbosity using env. var (when it is invoked via nbconvert)?
The --atx-headers command is deprecated (in favor of --markdown-headings=atx), as pandoc noisily reminds us, displaying this warning almost 40 times in a row:
[WARNING] Deprecated: --atx-headers. Use -...
6
votes
2
answers
823
views
Show warnings from the tidyverse all the time
I am using a deprecated feature from the tidyverse. So a warning is produced that finishes like this:
This warning is displayed once every 8 hours.
Call lifecycle::last_lifecycle_warnings() to see ...
2
votes
1
answer
350
views
What is the value range of the log level parameter --v of kube-apiserver?
I want to change kube-apiserver log level use --v parameter , I checked all the documents, and none of them gave the value range of this parameter.
Check the code, the value is int32 type, I tried to ...
0
votes
2
answers
2k
views
Setting MongoDb log verbosity level to minimize the logs
I have setup 3 replicas on mongodb. I am facing a lot of mongoDb logs in the log file of mongodb, and I want to minimize the logs to show only errors, warning and critical logs but not for connection ...
1
vote
2
answers
181
views
Error during the installation of SVM-light
I am trying to install SVM-Light on the cluster that I am working on but I got the following error:
svm_hideo.o:(.bss+0x38): multiple definition of `verbosity'; svm_common.o:(.bss+0x8): first defined ...
1
vote
0
answers
216
views
How to get a clean CDT Build Console Output?
I'm working with STM32CubeIDE using gcc compiler. In the build output I have to search for warnings and errors in a hundred lines of compiler-output infos. I'm explicitly interested in all warnings ...
0
votes
1
answer
66
views
How can I get icpc to tell me which files it uses for linking?
I'm linking some compiled code with icpc, e.g.:
icpc -o my_executable f1.o /path/to/f2.a -lfoo -lbar
I want icpc to tell me exactly which files it uses for the linking - which .a, .o and .so* and ...
0
votes
1
answer
4k
views
How do I run the DotNetCoreCLI@2 task to see verbose output for the build
I know there are outright verbosityRestore and verbosityPack inputs.. but what about for the regular 'build' of a .csproj file?
I've tried to find the answer in the documentation. I'm a bit frustrated,...
0
votes
1
answer
117
views
Printing bash command line args with $@ inline
I want to add verbosity to my bash function by printing the command that it will run. What is the best way to print all arguments $@ inline?
ggtest ()
{
echo 'git grep -n $@ -- "src/tests/*&...
1
vote
0
answers
879
views
meson build set verbosity
is there a way to decrease the traces output when the project is configured
with meson?
e.g.
meson build .....
$ meson build --reconfigure
The Meson build system
Version: 0.59.1
......
Executing ...
2
votes
1
answer
506
views
How to make 'svn export' less verbose?
I'm cloning just the files of a Git repo (so without history or the .git folder) using svn export https://github.com/user/repo/trunk as per this wonderful answer. Sadly, Git archive is disabled on ...
1
vote
1
answer
806
views
How can I get make to be verbose but with only "meaningful" lines when building with cmake?
I'm using CMake with the GNU Make generator on a project of mine, and then want to build it - verbosely.
I'm interested in lines which actually produce things, and not interested in lines such as:
...
1
vote
1
answer
430
views
scp doesn't list then when run in subshell script
I have a bash script my_script which executes:
scp -- 'somehost:*.txt' dest_dir
now, when I run this script from an interactive shell session, scp lists files as it copies them. But when I run a ...
1
vote
1
answer
373
views
How can I repress the output of `git-count-objects` when invoking `git-push`?
I consider the output of git-push to be quite verbose:
$ git push
Enumerating objects: 36, done.
Counting objects: 100% (36/36), done.
Delta compression using up to 8 threads
Compressing objects: 100%...
1
vote
1
answer
323
views
How do I remove the "Installed x object(x) from y fixture(s)" report from django test?
I am using fixtures during my django tests as they are proving to be quite useful
def some_test(self):
...
call_command('loaddata', 'path/to/fixture.json')
...
self.assertTrue(...)
...
1
vote
1
answer
170
views
How to reduce the log verbosity of ansible based Kubernetes operator deployment from INFO to WARN or ERROR
I have a wrote an ansible based kubernetes operator and I am trying to figure out a way to reduce the log generated by the operator deployment pod by reducing the log verbosity level.
kubectl logs ...
-1
votes
1
answer
106
views
in search of a realtime php cli log system with verbosity levels
Im looking for a log system which works with different verbosity levels and flushes to file or console immediately. I work with yii2. They Yii2 Log is good and has info, debug, warn, error levels. But ...
-1
votes
1
answer
1k
views
Develop a module to help generate lottery tickets in python
I have made the two modules (which are incomplete I guess) for the main function but couldn't make the main function
Create a script file named lottohelper_using_getopt.py for the module in your ...
1
vote
1
answer
790
views
Why GLPK Solver doesn't verbose anything in JuMP?
I create this simple code as a demonstration:
using GLPK
using JuMP
m = Model(GLPK.Optimizer)
@variable(m, y[i=1:100], Bin)
@objective(m, Min, sum(y))
@constraint(m, [j=5:50], sum([y[i] for i in j:j+...
0
votes
1
answer
2k
views
Is there a way to force any function to not be verbose in Python?
While loading a pretrained model with pytorch via
model.load_state_dict(torch.load(MODEL_PATH))
the console is flooded with output containing information about the model (which is annoying). Afaik ...
-1
votes
1
answer
303
views
How manage annoying Namespace and Class name redundancy on PHP and PSR-4
In many of my PHP micro-library, there are Class matching with project name, it create a strange fully qualified class name, look at this
<?php
namespace Javanile\MysqlImport;
class MysqlImport {
...
0
votes
0
answers
40
views
Get git to tell me where the offending whitespace is?
During a rebase of some git branch of mine, I get a warning saying:
/path/to/repo/.git/rebase-apply/patch:21: trailing whitespace.
some text in a file here
Now, I can go grepping for that string, but ...
3
votes
3
answers
472
views
.Net Core 3.1 and Angular compile verbosity in Visual Studio
I have a .Net Core 3.1 project with Angular (I think 8) UI, created from the standard project template. I have worked on this for many months. Every time I start debugging (F5) in Visual Studio 2019 ...
2
votes
1
answer
89
views
SICStus Prolog garbage collection trace messages
Browsing through the SICStus Prolog User's Manual I stumbled upon the Prolog flag gc_tracing.
I wanted to know more, so I started at the "Book Index" and found 3 entries for gc_trace:
G
gc_trace (...
6
votes
3
answers
3k
views
How can I make R's output more verbose so as to reassure me that it hasn't broken yet?
I often run code that eats up a lot of RAM, and may take as much as an hour before it gives its outputs. Often, I'll be half an hour in to running such code and I'll be worrying that something gone ...
3
votes
3
answers
995
views
Silence vroom::vroom?
vroom::vroom() gives a quite verbose message to console. For example:
> my_data = vroom::vroom("my_data.csv")
## Rows: 6,608 ...
1
vote
1
answer
1k
views
CURLOPT_STDERR is always executed?
Well, I'm having troubles making requests to the Discord API, I'm not understanding how curl is working.
This is my code:
function make_request($mixed, $token, $get_json = true) {
$url = ...
3
votes
1
answer
1k
views
disable breakpoint hit messages in gdb
I have a simple c++ loop I'm debugging with gdb, and I want to disable the messages informing me of a breakpoint hit. I've tried several gdb flags like -q and set verbose off but none worked. Here is ...
1
vote
1
answer
1k
views
used-defined verbosity level (alias) for UVM reporting (using uvm_info)
In UVM, there are pre-defined verbosity levels:
UVM_DEBUG
UVM_FULL
UVM_HIGH
UVM_MEDIUM
UVM_LOW
UVM_NONE
Actual reporting can be controlled using command line argument, e.g. +UVM_VERBOSITY=UVM_LOW
(1) ...
1
vote
1
answer
517
views
How to remove the prefix printed out by tf.logging.info
Printing log lines in TensorFlow is done with functions in tf.logging like tf.logging.info, tf.logging.log, etc.
import tensorflow as tf;
tf.logging.set_verbosity(tf.logging.INFO);
tf.logging.info(...
1
vote
0
answers
72
views
Remove stdout output from tf.Session due to init in a loop
I've come to stack overflow because no one else seems to have asked this question before. When running my tensorflow model I use it inside a loop to do regression analysis. I use tf.Session inside the ...
7
votes
1
answer
2k
views
pytest reports too much on assert failures
Is there a way for pytest to only output a single line assert errors?
This problem arises when you have modules with asserts, If those asserts fails, it dumps the entire function that failed the ...
6
votes
3
answers
14k
views
How to make the output less verbose in Pytest?
I am running pytest with tavern for a small testing API project.
Failing a test, throws me a bunch of verbose errors plus the response I am expecting to get (why it failed). How can I make pytest less ...
0
votes
1
answer
97
views
Can I detect ctest verbosity from inside a test?
Is it possible (via querying an environment variable, or otherwise) to detect the verbosity level that ctest is running under, from within a test?
Ie, in my test, I would like to know if "-V/--...
1
vote
1
answer
612
views
Mute logging in TPU estimator
I am using BERT run_classifier and tensorflow TPUEstimator, each time I train my model or I predict using the estimator predictor, I get too many logging information printed on my screen. How can I ...
1
vote
1
answer
35
views
Supress information in mysql prompt
I ran the query in mysql prompt , I need to supress the "1 row in set (0.00 sec)" in output prompt. How I can do it
mysql> select concat( " Total Records in Transaction Table : ", count(*) ) from ...
6
votes
1
answer
1k
views
How to lower docfx verbosity?
We use docfx, it is included as a nuget in one of our csproj files. I didn't personally setup the thing and I have no more information on how it works, but it looks like a simple nuget added to a C# ...
3
votes
4
answers
1k
views
Check current bash verbosity
I know bash can be set to verbose mode by using set -v, however I want to write a function that doesn't run in verbose mode even if called from a verbosed script.
While I'm aware I could disable ...
5
votes
2
answers
3k
views
Jenkins console output flooded with [DEBUG] http-outgoing log entries
We have a build job where the console output shows many strange messages like below, so we cannot load a full log and have to remove the -X option in the build configuration to get rid of them. I ...
0
votes
2
answers
532
views
How to disable ActiveRecord::Migration verbosity?
In short I want to remove the display of the ActiveRecord::Migration.create_table and drop_table functions that I use in an spec file, how can I do that ?
(I answered myself, but I still thinks its a ...
2
votes
0
answers
210
views
How do I stop MSVC from telling me about the code it generates?
My software performs some generation and compilation of C code under the hood.
I control this with Python’s Setuptools, which calls a C compiler of its own choice – on Windows this defaults to MSVC.
...
0
votes
1
answer
522
views
How can I prevent webpack from printing long lists of files on each error of a loader (in multi-files entries)
I am migrating a js (es5) only project to webpack + es6 + Typescript.
Before migration, all js files were simply concatenated and now I want to start with webpack doing the same.
The problem:
When ...
0
votes
1
answer
176
views
Optimizing WCF Bandwidth Transfer (Reducing Verbosity)
We are currently using WCF for our transfer between our clients and servers. We are using HttpTransportBinding, with BinaryMessageEncoding. The back end is .NET, and the front end is Xamarin (iOS, ...
7
votes
1
answer
902
views
How to make EF Core migrations less verbose
I am using Entity Framework Core 1.1.0 with migrations. When I run them with
dotnet ef database update
in Package Manager Console the console is full of applied SQL. Instead of this, I would like to ...
5
votes
1
answer
22k
views
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)
...
3
votes
0
answers
999
views
Visual Studio 2017 output window build verbosity
Is there a way to stop VS 2017 from displaying the entire CL.exe and Link.exe command line in the build output window? This seems like a new development. It happens with some solutions but not with ...
5
votes
1
answer
16k
views
Does Git have a debug or verbose option explaining what it is doing? [duplicate]
Do some or all git commands have debug or verbose options which explain what they are attempting or what other sub-commands are being executed?
8
votes
1
answer
3k
views
How can a test in Python unittest get access to the verbosity level?
When calling a test suite in the Python unittest framework, it is possible to give a -v for higher level of verbosity, like:
python3 test_suite.py -v
How can a test case get access to the verbosity ...
49
votes
2
answers
13k
views
How can I make Elixir mix test output more verbose?
In my Elixir/Phoenix app, when I run
mix test
I get output like:
$ mix test
....
Finished in 0.09 seconds
4 tests, 0 failures
with dots for each test that succeeded.
How do I output the names of ...