-
-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Select log file to open with --open/-o #7
base: master
Are you sure you want to change the base?
Conversation
Thanks for the idea, but what's wrong with selecting the file from the list? |
I suppose in general I'm just used to programs allowing me to specify which file I want them to open, without having to use their non-standard UIs. Unix philosophy and whatnot. |
@@ -34,6 +34,10 @@ deoptigate -- node --allow-natives-syntax app.js | |||
|
|||
Simply run `deoptigate` from the directory that contains the log file(s). | |||
|
|||
### Deoptigate existing `*.log` | |||
|
|||
Run `deoptigate --open path/to/file.log`. You may also use `-o`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's just add this to the above section, i.e.
Simply run
deoptigate
from the directory that contains the log file(s) or specify a specific file via--open|-o
, i.e.deoptigate --open path/to/file.log
.
16ea722
to
2853130
Compare
deoptigate -o some_named_log_file.log
now works, as well as--open
.It's nice to be able to name my log files whatever I want.