Netbeans glassfish System.out.println()显示太多信息

时间:2016-08-28 12:30:32

标签: java netbeans glassfish output

调用System.out.println("Hello");函数时,通常用于在glassfish域服务器日志中显示“Hello”。

我不小心点击了一行,并在我的脚本上创建了一个程序计数器。

我不知道如何摆脱它,所以当我最终设法找到删除它的设置时,

我不小心毁了我的输出。

我不知道我做了什么,但现在当我运行相同的System.out.println(“你好”)时;命令,我明白了:

[2016-08-28T21:24:02.715+0900] [glassfish 4.1] [INFO] [] [] [tid: _ThreadID=63 _ThreadName=Thread-8] [timeMillis: 1472387042715] [levelValue: 800] [[
  Hello]]

请帮忙。我不想要这个烂摊子,我只想让它再次说“你好”,仅此而已。谢谢。

1 个答案:

答案 0 :(得分:0)

以上输出是正确的。这就是GlassFish记录器默认输出的内容。您的img { max-width: 300px; } /* the image dimension */ .image a { position: relative; display: inline-block; } /* allow :before element positioning easier */ .image a:hover:before { position: absolute; top: 30px; left: 40px; /* Where to put the overlay */ display: inline-block; content: ''; /* must have */ width: 300px; height: 164px; /* size of the element */ background-image: url('https://i.kinja-img.com/gawker-media/image/upload/s--pEKSmwzm--/c_scale,fl_progressive,q_80,w_800/1414228815325188681.jpg'); /* URL of the image */ background-size: 300px 164px; /* Resize the image as this dimension */ opacity: .5; /* Transparent rate */ } 正在将System.out.println("Hello");传递给记录器,并且记录器正在以正常格式打印该消息。

如果您打开GlassFish Hello,您会看到每条消息的格式都是这样的。

之所以发生这种情况,是因为server.logstdout都通过了记录器。