diff options
author | Fabricio Voznika <fvoznika@google.com> | 2018-10-11 14:28:15 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2018-10-11 14:29:37 -0700 |
commit | e68d86e1bd47f7905e4452f7ce0e04e683561f85 (patch) | |
tree | f5e9ff902d3efbee1c33c9f2d5064f57cde977d2 /README.md | |
parent | 96c68b36f67355295339e8039712b28d272e083e (diff) |
Make debug log file name configurable
This is a breaking change if you're using --debug-log-dir.
The fix is to replace it with --debug-log and add a '/' at
the end:
--debug-log-dir=/tmp/runsc ==> --debug-log=/tmp/runsc/
PiperOrigin-RevId: 216761212
Change-Id: I244270a0a522298c48115719fa08dad55e34ade1
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -297,7 +297,7 @@ Docker configuration (`/etc/docker/daemon.json`): "runsc": { "path": "/usr/local/bin/runsc", "runtimeArgs": [ - "--debug-log-dir=/tmp/runsc", + "--debug-log=/tmp/runsc/", "--debug", "--strace" ] |