log
log copied to clipboard
logging without file/line?
Out of privacy concern I don't want to include references to the file and lines so as to make reverse engineer harder, but far as I see there is no way to opt out to have logging without those information in the standard macros. I can always add the record myself but it would be tedious.
You can configure your logging implementation to not output them if you'd like.
@stevefan1999-personal if you can't control the logging implementation you can also build your own log records using RecordBuilder, easiest is likely to copy the log! macro code, this way at least your code won't expose the file/line.