Skip to content

Commit

Permalink
Updated docs with log related arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
danielsanchezq committed Aug 3, 2020
1 parent 51ffe3f commit 89f4773
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Expand Up @@ -44,6 +44,8 @@ The command line flags can be retrieved using the `--help` when running the serv
TLS_CERT_FILE=]
--db-url <db-url> Database url [env: DATABASE_URL=] [default: ./db/database.sqlite3]
--in-settings-file <in-settings-file> Load settings from file
--log-level <log-level> Application logging level
--log-output-path <log-output-path> Output log file path
--max-age-secs <max-age-secs> If none provided, CORS responses won't be cached
--out-settings-file <out-settings-file> Dump current settings to file
--priv-key-file <priv-key-file>
Expand All @@ -68,7 +70,11 @@ An example of the contents of the file would be like this:
"max_age_secs" : 60
},
"db_url": "./database.sqlite3",
"block0_path": "./test/bin.test"
"block0_path": "./test/bin.test",
"log" : {
"log_output_path" : "./server.log",
"log_level" : "error"
}
}
```
Expand Down

0 comments on commit 89f4773

Please sign in to comment.