运行 FlexUnit 无法获取跟踪控制台输出

发布于 2024-12-13 05:46:43 字数 674 浏览 2 评论 0原文

我已经在我的应用程序中设置了 FlexUnit,我想使用跟踪来调试测试,但我不确定如何让 FlexUnit 跟踪到 flashlog 文件。这是我在 ant 中测试任务的一部分,我认为 'localtrusted' 属性会有所帮助,但似乎没有。在我的日志中,我只得到测试用例,测试中没有任何痕迹。

<flexunit
        workingDir="${test-output.dir}"
        toDir="${test-output.module.dir}/output"
        verbose="true"
        localtrusted="true"
        haltonfailure="false">
         <source dir="${basedir}/src" />
         <source dir="${basedir}/test-src" />
        <testSource dir="${basedir}/test-src">
            <include name="**/*Test*.as" />
        </testSource>
        <library dir="${env.CLI_ROOT}/tools" />
    </flexunit>

I've set up FlexUnit in my app, I want to debug a test using trace, but im not sure how to get flexunit to traceto the flashlog file. Here's part of my test task in ant, I thought the 'localtrusted' property would help, but it doesnt seem to. In my logs I get the testcases only, none of my traces which are inside my tests.

<flexunit
        workingDir="${test-output.dir}"
        toDir="${test-output.module.dir}/output"
        verbose="true"
        localtrusted="true"
        haltonfailure="false">
         <source dir="${basedir}/src" />
         <source dir="${basedir}/test-src" />
        <testSource dir="${basedir}/test-src">
            <include name="**/*Test*.as" />
        </testSource>
        <library dir="${env.CLI_ROOT}/tools" />
    </flexunit>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

诗笺 2024-12-20 05:46:43

尝试在您的库路径中使用 DConsole ,如果您使用 debug,它将输出到控制台/info/warn/error/fatal() 而不是 trace()

import com.furusystems.logging.slf4as.global.debug
debug("traces!");

Try DConsole in your library path and it will output to the console if you use debug/info/warn/error/fatal() instead of trace().

import com.furusystems.logging.slf4as.global.debug
debug("traces!");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文