Friday, 7 February 2014

How To add multiple levels to the Infolog tree in Ax 2012

static void TestJob(Args _args)
{
    void sub1()
    {
        setprefix("Prefix");
        {
        info("Info1");
        info("Info2");
        }
        setprefix("Prefix1");
        {
        info("Info1");
        info("Info2");
        }
    }
    void sub2()
    {
        setprefix("Prefix2");
        info("Info3");
    }
    ;

    setPrefix("Main");
    sub1();
    sub2();
}

No comments:

Post a Comment