-
I was planning to do a dry run and only log deletions, so I could manually go through the log and submit false positives. Unfortunately, the log either contains nothing when using these parameters:
Or just about everything from info to warnings with these parameters:
Looking for the right parameters to do a dry-run and manually go through the logs, so I only want to see deletions with enough details to submit a false positive report if necessary. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
-a -n -r Is the best option for this I think. The -a option makes it only print removed blocks in the report. But there are still other logging appearing between the reports. I could make an option for this in the future. That's a good idea. But if you want a workaround for now you could use something like grep to grep on any line starting with a whitespace. This would remove all the lines that contain the other logging info. Any false positive reports are greatly appreciated 👍 |
Beta Was this translation helpful? Give feedback.
-a -n -r
Is the best option for this I think.
The -a option makes it only print removed blocks in the report. But there are still other logging appearing between the reports.
I could make an option for this in the future. That's a good idea.
But if you want a workaround for now you could use something like grep to grep on any line starting with a whitespace. This would remove all the lines that contain the other logging info.
Any false positive reports are greatly appreciated 👍