Someone Has a Sense of Humor

While attempting to debug a BPM today I came across this :slight_smile:

1 Like

I found the code to that if you need it.

using System;
using System.IO;

namespace Moronic
{
    class EpicorLogger
    {
        public static void Log(string myText)
        {
            string filename = DateTime.Now.Ticks.ToString() + ".TXT";
            File.WriteAllText("C:\\" + filename, myText);
        }
    }
}
1 Like

C:\ REALLY?

That’s moronic :wink:

A little easter egg hahaa