Skip to content

Commit

Permalink
quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasalmeida committed Feb 5, 2024
1 parent c4555c4 commit 5c534d8
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@ dedu.iml
target
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
dependency-reduced-pom.xml
dependency-reduced-pom.xml
results
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]
Copyright 2024 - Tomás Dias Almeida

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ None of the properties are required and the default value is used in case the pr
| Property | Accepted values | Default Value | Description |
|--------------------------------------------------------|---------------------------------|------------------|------------------------------------------------------------------------------------------|
| log.level | TRACE, DEBUG, INFO, WARN, ERROR | INFO | Log output level |
| acl.current.output.log.enable | true / false | false | Output the current bindings to the output log |
| acl.current.output.log.enable | true / false | false | Output the current bindings to the output log (debug mode only) |
| acl.current.output.csv.enable | true / false | false | Output the current bindings to a CSV file |
| acl.current.output.csv.path | any path | ./current.csv | Path to save the CSV current bindings |
| acl.actionable.output.log.enable | true / false | false | Output the actionable bindings to the output log |
| acl.actionable.output.log.enable | true / false | false | Output the actionable bindings to the output log (debug mode only) |
| acl.actionable.output.csv.enable | true / false | false | Output the actionable bindings a CSV file |
| acl.actionable.output.csv.path | any path | ./actionable.csv | Path to save the CSV actionable bindings |
| rule.consolidate.literal.topic.bindings.enabled | true / false | false | Enable experimental rule to consolidate several literal bindings into one prefix binding |
Expand All @@ -66,4 +66,18 @@ None of the properties are required and the default value is used in case the pr
java -jar target/dedu-x.y.z.jar --kafka-config-file examples/sasl-plain-cluster/clients/kafka-user.properties --dedu-config-file examples/dedu.properties --principal User:alice
```

## DISCLAIMER

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Copyright 2024 - Tomás Dias Almeida
8 changes: 4 additions & 4 deletions examples/dedu.properties
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
log.level=INFO
acl.current.output.log.enable=false
acl.current.output.log.enable=true
acl.current.output.csv.enable=true
acl.current.output.csv.path=target/current.csv
acl.current.output.csv.path=results/current.csv

acl.actionable.output.log.enable=false
acl.actionable.output.log.enable=true
acl.actionable.output.csv.enable=true
acl.actionable.output.csv.path=target/actionable.csv
acl.actionable.output.csv.path=results/actionable.csv

rule.consolidate.literal.topic.bindings.enabled=true
rule.consolidate.literal.topic.bindings.prefix.min=4
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/log4j.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
log4j.rootLogger=ERROR, stdout
log4j.rootLogger=DEBUG, stdout

log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
Expand Down

0 comments on commit 5c534d8

Please sign in to comment.