Questions tagged «console»

通过键入命令以执行特定任务来与计算机操作系统或软件进行交互的机制



19
在Google Chrome中清除JavaScript控制台
我想知道是否可以使用某些命令清除控制台。 console.log(),可以打印...是否有清除控制台的命令? 我尝试过console.log(console);并在下面获得此功能... assert: function assert() { [native code] } constructor: function Console() { [native code] } count: function count() { [native code] } debug: function debug() { [native code] } dir: function dir() { [native code] } dirxml: function dirxml() { [native code] } error: function error() { [native …


7
哪里可以从Chrome扩展程序中的background.js中读取控制台消息?
我刚开始使用Google Chrome扩展程序,但似乎无法从后台js登录控制台。当发生错误时(例如,由于语法错误),我也找不到任何错误消息。 我的清单文件: { "name": "My First Extension", "version": "1.0", "manifest_version": 2, "description": "The first extension that I made.", "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": ["background.js"] }, "permissions": [ "pageCapture", "tabs" ] } background.js: alert("here"); console.log("Hello, world!") 加载扩展程序时,出现警报,但没有任何日志记录到控制台。我究竟做错了什么?

10
为什么“ System.out.println”在Android中不起作用?
我想在控制台中打印某些内容,以便对其进行调试。但是由于某种原因,我的Android应用程序中没有任何内容。 那我该如何调试? public class HelloWebview extends Activity { WebView webview; private static final String LOG_TAG = "WebViewDemo"; private class HelloWebViewClient extends WebViewClient { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { view.loadUrl(url); return true; } } /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) …

8
显示/隐藏C#控制台应用程序的控制台窗口
我到处搜索有关如何隐藏自己的控制台窗口的信息。令人惊讶的是,我能找到的唯一解决方案是骇人听闻的解决方案,其中涉及按其标题FindWindow()查找控制台窗口。我对Windows API进行了更深入的研究,发现有一种更好,更轻松的方法,因此我想将其发布在这里,供其他人查找。 您如何隐藏(和显示)与我自己的C#控制台应用程序关联的控制台窗口?






15
从控制台以交互方式读取值
我想做一个带有控制台扩展的简单服务器http服务器。我找到了要从命令行数据读取的代码段。 var i = rl.createInterface(process.stdin, process.stdout, null); i.question('Write your name: ', function(answer) { console.log('Nice to meet you> ' + answer); i.close(); process.stdin.destroy(); }); 好再问一次问题,我不能简单地使用while(done) { }循环?如果服务器在询问时间接收到输出,也会破坏线路。
155 node.js  console 


16
如何在Python中禁用和重新启用控制台日志记录?
我正在使用Python的日志记录模块,并且想在一段时间内禁用控制台日志记录,但是它不起作用。 #!/usr/bin/python import logging logger = logging.getLogger() # this gets the root logger # ... here I add my own handlers #logger.removeHandler(sys.stdout) #logger.removeHandler(sys.stderr) print logger.handlers # this will print [<logging.StreamHandler instance at ...>] # but I may have other handlers there that I want to keep logger.debug("bla bla") 上面的代码显示了bla blaon …

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.