You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-4Lines changed: 24 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,12 +57,17 @@ If not specified, the current directory (`.`) is used by default.
57
57
58
58
## Command Logging
59
59
60
-
Every command executed by `rc` is automatically logged to an appropriate log file. This provides:
60
+
Every command executed by `rc` is automatically logged to `<working-dir>/.NNNN.rc.log`, where `NNNN` is a sequential number incremented with each command run in that directory. This provides:
61
61
-**Reproducibility** - Review and replay exact commands that were run
62
62
-**Debugging** - Trace what commands were executed in case of issues
63
63
-**Documentation** - Keep a record of all operations performed
64
64
65
-
The log files are stored in the working directory and contain the full command line that was executed, including all arguments passed to the containerized application.
65
+
Each log file contains:
66
+
- The exact command line used to invoke `rc`
67
+
- Full output logs from the executed application
68
+
- Timestamp and execution details
69
+
70
+
For example, your first run creates `.0000.rc.log`, the second creates `.0001.rc.log`, and so on.
0 commit comments