What's up with this? I'm trying to use Windows10 PowerShell to interact with a Meteor application. I'm having a heck of a time displaying feedback from the server thru the PowerShell. Here's a typical screen shot:
At first glance it looks okay... but... what's up with that big blank zone to the left of the warning about bcrypt? Here's a simple text copy paste from that same screen.
=> Started proxy.
=> Started MongoDB.
W20160829-11:13:55.719(-7)? (STDERR) Note: you are using a pure-JavaScript implementation of bcrypt.
W20160829-11:13:55.780(-7)? (STDERR) While this implementation will work correctly, it is known to be
W20160829-11:13:55.782(-7)? (STDERR) approximately three times slower than the native implementation.
W20160829-11:13:55.785(-7)? (STDERR) In order to use the native implementation instead, run
W20160829-11:13:55.787(-7)? (STDERR)
W20160829-11:13:55.789(-7)? (STDERR) meteor npm install --save bcrypt
W20160829-11:13:55.791(-7)? (STDERR)
W20160829-11:13:55.794(-7)? (STDERR) in the root directory of your application.
I20160829-11:13:55.805(-7)? Execution from imports/startup/server/emailServer.js smtp://postmaster%40sandbox57668b25b40b496
I20160829-11:13:55.808(-7)? Executing /imports/startup/server/index.js
=> Started your app.
=> App running at: http://localhost:3000/
Type Control-C twice to stop.
I'm thinking its a Polar Bear in a Snow Storm issue. The raw server feedback data is there, you just can't see it. The copy of the server log errors and time are written in exactly the same color as the background. I've made changes to background color, but none of them seem to work very well. It's not clear to me on where those settings for that class of message exist. Here's my properties pull down box:
As you can see I only have options for Screen Background/Text colors and Popups background / Text colors. It's like those server warnings are a different classification of output. One that I am unable to even identify or modify. Anybody know what is going on here? Is there a way to fix this so I can easily see ALL the feedback from the server?
And yes, I'm doing development, so I'm running this localhost, Windows 10.