-
Notifications
You must be signed in to change notification settings - Fork 153
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
Support SonicBoom as a destination #256
Conversation
Readme.md
Outdated
@@ -207,6 +207,11 @@ The options accepted have keys corresponding to the options described in [CLI Ar | |||
ignore: 'pid,hostname', // --ignore | |||
hideObject: false, // --hideObject | |||
singleLine: false, // --singleLine | |||
|
|||
dest: 1, // The file or file descriptor to write to | |||
append: true, // Append to the destination |
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.
What happens if it is false? Will it overwrite the destination?
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.
Yes
Readme.md
Outdated
|
||
dest: 1, // The file or file descriptor to write to | ||
append: true, // Append to the destination | ||
mkdir: false, // Ensure the directory for dest exist when true |
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.
Does this work recursively?
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.
Yes
Readme.md
Outdated
@@ -207,6 +207,11 @@ The options accepted have keys corresponding to the options described in [CLI Ar | |||
ignore: 'pid,hostname', // --ignore | |||
hideObject: false, // --hideObject | |||
singleLine: false, // --singleLine | |||
|
|||
dest: 1, // The file or file descriptor to write to |
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.
what does default destination of 1 mean?
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.
the file descriptor of stdout.
I've updated it, let me know what you think |
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.
Looks good to me.
Co-authored-by: James Sumners <james@sumners.email>
Adds a couple of missing options