Questions tagged [console-output]

103 questions
0
votes
1 answer

Export VirtualBox VM with PowerShell and show progress

I want to export all my VirtualBox VMs for backup purpose using an automated script. The following command should do the export in my PS script: cmd.exe -c "vboxmanage export Antergos -o D:\Temp\test.ova" By running the vboxmanage command in…
Lion
  • 16,606
  • 23
  • 86
  • 148
0
votes
1 answer

Dynamic update text in same place on terminal python 2.7

My program is written in Python 2.7 and I want to do a dynamic update. The output is in table-view and has hundreds of characters. A really good answer I found here, however, more than 100 characters it crushed (as promised in the article).…
Bar
  • 11
  • 1
  • 6
0
votes
1 answer

Tkinter - returning print of imported modules when button clicked to perform function

I have written some code primarily to be used with the console, but was asked to create a simple GUI for it for ease of use. In it, I am setting up the main frame with widgets, and using the widget command to call upon the function that I import.…
kalle
  • 425
  • 1
  • 6
  • 17
0
votes
1 answer

C# redirect input console application not working

I have an interesting situation. I am trying to run a program from the command line and I cannot programatically redirect its input for some reason. The executable I am running is called. Spideroakone.exe. This executable asks for a password. When I…
0
votes
2 answers

Jenkins jobs console output going to / monitored by Splunk - How to fetch that data using CURL / Rest API for last N minutes / hours / days etc

Splunk Version 6.5.3.1 Splunk Build bf0ff7c2ab8b Jenkins Version 1.642.3 or 2.32.3 On every Jenkins master, there's a splunk process running. $ ps -eAf|grep splunk splunk 58877 1 20 Feb16 ? 42-23:27:37 splunkd -p 8089 restart splunk …
AKS
  • 16,482
  • 43
  • 166
  • 258
0
votes
1 answer

Turn off download messages in Jenkins Console

I keep getting the following in the Jenkins console output (when dependent jars are being downloaded) [..snip..] 116/599 KB 1512/1884 KB 1451/5488 KB 3268/4455 KB 116/599 KB 1512/1884 KB 1455/5488 KB 3268/4455 KB 116/599 KB …
Casey Harrils
  • 2,793
  • 12
  • 52
  • 93
0
votes
1 answer

IntelliJ 2017.1.3: Unable to evaluate insert key expression: Cannot find local variable '$this0'

After upgrade to 2017.1.3 the debugger started printing out the lines Unable to evaluate insert key expression: Cannot find local variable '$this0' Everything works ok, but this text clutter the console window making it less responsive After…
mirelon
  • 4,896
  • 6
  • 40
  • 70
0
votes
1 answer

where does myeclipse console output come from?

recently I try to review an old JavaWeb project written in Myeclipse, it is sort of bulky. I start Tomcat and console output shows: 1 1 filter--in I remember that I added a filter, so the filter--in is ok, I know where it comes from and where to…
Calvino Shaw
  • 481
  • 1
  • 7
  • 10
0
votes
0 answers

C# write into textbox (which is the Console Output) from Backgroundworker

I am making a GUI to a bigger program. In order to include a Abort button, i had to use Backgroundworker. void _oWorker_DoWork(object sender, DoWorkEventArgs e) { try { …
0
votes
0 answers

Output Underscore upside down in c++

I'm trying to output an ascii 0175 in c++ cout << "¯¯¯¯¯¯ E\n" << endl // the "E" is there for comparison as opposed to cout << "________E\n" << endl; But it comes out wrong in the console, »»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»» Is there…
0
votes
1 answer

How to display server name in every line on console output

How to print the Servername in beginning of each line using shell script on Jenkins Console Output. I am getting the Servernames as parameter like sd009.domain.com, sw009.domain.com from Active Choices parameter plugin Actual Output: ssh -o…
0
votes
1 answer

Display log file in Jenkins

I need to display a log file (which is present in a test machine), in the console output of a Jenkins job that I run. Is that possible? If yes, how can I do that?
0
votes
1 answer

No console output in simple c++ program

I noticed a weird behaviour of some of my programs in c++ and when I was trying to figure out what coused it, I found out, that something wrong is going on with my console outputs. I used iostream and cstdio functions with the same behaviour. When I…
fifco
  • 11
  • 6
0
votes
2 answers

Jenkins console output format for selemium webdriver execution

I am executing selenium webdriver scripts through jenkins and logging some info through logger.info. On console output of jenkins it is showing as [testng] 2014-10-28 23:52:29,868 (pool-1-thread-2). I am not able to figure it out what "868" is…
0
votes
2 answers

Pipe console outputs from a specific function into a file - python

I have a function that I cannot edit and it prints results onto the console. Is it possible to calls that function but pipes the console output into a file without changing the internal code of the function? For example, I have: def somefunc(x): …
alvas
  • 115,346
  • 109
  • 446
  • 738