神秘显示——Windows PowerShell 中缺少部分服务器反馈

神秘显示——Windows PowerShell 中缺少部分服务器反馈

这是怎么回事?我正在尝试使用 Windows10 PowerShell 与 Meteor 应用程序进行交互。我花了很长时间通过 PowerShell 显示来自服务器的反馈。这是一个典型的屏幕截图:

PowerShell 屏幕截图

乍一看还行……但是……bcrypt 警告左侧的一大片空白区域是怎么回事?以下是从同一屏幕复制粘贴的简单文本。

=> 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.

我认为这是暴风雪中的北极熊问题。原始服务器反馈数据就在那里,只是你看不到。服务器日志错误和时间的副本以与背景完全相同的颜色书写。我更改了背景颜色,但似乎都没有很好地发挥作用。我不清楚该类消息的设置存在于何处。这是我的属性下拉框:

PowerShell 属性框

如您所见,我只有屏幕背景/文本颜色和弹出窗口背景/文本颜色选项。这些服务器警告就像是输出的不同分类。我甚至无法识别或修改。有人知道这是怎么回事吗?有没有办法解决这个问题,让我可以轻松看到来自服务器的所有反馈?

是的,我正在进行开发,所以我正在运行这个本地主机,Windows 10。

相关内容