M2 Improved TraceError

  • What is this "Improved TraceError" ?

    I always get bored with the coding style while coding.


    Exmaple Old:

    Code
    1. import dbg
    2. value = 15
    3. dbg.TraceError("Testing Code {}".format(value))
    4. syserr output
    5. 0717 14:46:21398 :: Testing Code 15

    This output is very difficult, and I constantly need to do "import" repeatedly.

    It doesn't show in which file and on which line the output is given.

    I have improved this significantly.


    Exmaple New:

    Code
    1. value = 15
    2. printb("Testing Code {}".format(value))
    3. syserr output
    4. 0717 14:46:21398 :: [Name:intrologin.py Line:188] Testing Code 15


    Bitte melden Sie sich an, um diesen Link zu sehen.