Questions tagged «verbosity»

12
如何禁用请求库中的日志消息?
默认情况下,Requests python库按照以下方式将日志消息写入控制台: Starting new HTTP connection (1): example.com http://example.com:80 "GET / HTTP/1.1" 200 606 我通常对这些消息不感兴趣,因此想禁用它们。使这些消息静音或降低请求的详细程度的最佳方法是什么?

7
如何强制make / GCC向我显示命令?
我正在尝试调试编译问题,但似乎无法获得GCC(或者可能是make ??)来向我展示其正在执行的实际编译器和链接器命令。 这是我看到的输出: CCLD libvirt_parthelper libvirt_parthelper-parthelper.o: In function `main': /root/qemu-build/libvirt-0.9.0/src/storage/parthelper.c:102: undefined reference to `ped_device_get' /root/qemu-build/libvirt-0.9.0/src/storage/parthelper.c:116: undefined reference to `ped_disk_new' /root/qemu-build/libvirt-0.9.0/src/storage/parthelper.c:122: undefined reference to `ped_disk_next_partition' /root/qemu-build/libvirt-0.9.0/src/storage/parthelper.c:172: undefined reference to `ped_disk_next_partition' /root/qemu-build/libvirt-0.9.0/src/storage/parthelper.c:172: undefined reference to `ped_disk_next_partition' collect2: ld returned 1 exit status make[3]: *** [libvirt_parthelper] Error 1 我想看的应该与此类似: $ make gcc -Wall …
276 gcc  makefile  verbosity 

8
可以使Maven不再那么冗长吗?
Maven喷出了太多的输出行,以我的口味(我喜欢Unix的方式:没有新闻就是好消息)。 我想摆脱所有[INFO]行,但是找不到控制Maven冗长性的参数或配置设置。 是否没有类似LOG4J的方式来设置日志级别?
104 maven  output  verbosity 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.