pub fn trace(category: &str, message: &str)Expand description
Trace function for verbose logging
Outputs trace messages to stderr when tracing is enabled. Messages are prefixed with timestamp and category.
ยงExamples
use command_stream::trace::trace;
trace("ProcessRunner", "Starting command execution");