Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 XSJS 中有一些代码可以根据某些条件填充/更新我的 Hana DB。我正在寻找一种机制,我可以在其中打印一些评论到控制台或某些日志文件。
我知道我可以使用 console.log(); 对于 Web 浏览器上的普通 javascript,但它不适用于 XSJS。服务器端 JS 的其他一些实现,如 node.js 给出了 echo 命令。XSJS 有类似的东西吗?
提前致谢。
使用 $.trace.debug("在此处输入您的日志评论"); 在 xsjs 文件中,然后您可以在系统的“诊断文件”部分下看到跟踪文件中的日志。
在此之前,您需要在“跟踪配置”部分下更改 XS-Engine 的“数据库跟踪”配置。