Hey, no worries. We're discussing something that users will be a producer of and devs are the consumers of, and which I've got mostly implemented, but which I want to understand what would be most useful to you all, so I can either make a patch that works or which devs can review, fix, and I can compare to mine and learn something from.
So, time is
not of the essence here.

. Anyway, apologies that this is sorta long.
It occurred to me that there were (at least!) three ways to handle debug commands with debug off
- Error/Return False/Disable the menu item
- Turn on Debug log and log as requested (implicit activation)
- Turn on Debug Log, write entry, turn off debug log (temporary activation)
My (as yet unimplemented plan) for the GUI was to disable the note command unless the log was active. I am naively convinced I can figure out how to modify the Debug menu item to also toggle the enabled/disabled field of the DebugNote menu item. I could also leave it enabled and check for isDebugging() and respond with an error if false. I might want to do that anyway, incase the debug command is invoked/disabled outside of the menu. (Aside: I noticed that I can start the debug log in the gCLI, but it doesn't toggle the Help menu from Start to Stop. Probably nobody ever starts in the gCLI and stops from the menu, but it does seem inconsistent.)
updateDebugLog() seems to write to a predictable but not user-selectable file, and inserts a lot of header info, so I don't see a way to get it to do something nefarious at the OS level, like write a preference, script, or . We could have a truncate function to keep it to a maximum length or any other filtering effect we thought was needed (URLEncoding?). From prior log experience, we might want to make sure the log couldn't have the user credentials in them, but I'm not sure that the debug log doesn't already have them and I'm not sure if ash has the password as a variable anyway.
As far as an ash command,
boolean write_to_debug_log(userNote) sounds right to me.
Code:
All it really does is RequestLogger.updateDebugLog(userNote). The return value is true if the string was written and false otherwise. For 99.44% of the cases I can think of (and easily check for) false is equivalent to "debugging is not turned on".
isDebugging() lets you test for that fast and return early, 99.44% of the time. You could also try to aggressively turn on the log, depending on the design philosophy. Same options as listed above, but ash gets its own thinking/consideration...
Other (hard to test) cases are file deleted/partition full/out of file handles/drive dismounted/any of the normal log writing failure causes, but other things are probably failing by that point.
updateDebugLog has 4 method signatures:
public static final void updateDebugLog()
public static final void updateDebugLog( final String line )
public static final void updateDebugLog( final Throwable t )
public static final void updateDebugLog( final Object o )
If you want to skip the blank and instead prompt for a String (or something else that will give a string via o.toString()), that's reasonable and Ash only really has to support methods 2 and 4. And 2 may reasonably collapse into 4, because java supports String.toString() (probably for just this case).
For my menu-based command, I was sending
"-----\n${UserNote}\n-----", but I don't think you'd want that from the ash command.
Anything else you think I should consider?