func wont print the logging level before the exception
it just wont print the [{time} ERROR] then the exception, it just prints the exception, also i need help with getting IPs from domain names, ill send the src if i have to.
2 Replies
where is currentTimeforlogs coming from?
I'd start by placing a breakpoint on that line and checking what each variable's value is
and it seems like you'd throw an error everytime that method is ran. You don't excape before throwing the exception
Console.Write
doesn't do a flush -- a flush is normally done by writing a new line, but if you need to you can manually flush
But, trying to write an error message by throwing an exception is... odd