verbose mysql logs

This commit is contained in:
Bryan Stitt 2022-07-26 04:58:37 +00:00
parent 4cb65b0fa4
commit 413c8d86d3
2 changed files with 5 additions and 5 deletions

View File

@ -6,7 +6,7 @@ CREATE TABLE users (
email VARCHAR(320), email VARCHAR(320),
) )
-- TODO: foreign key -- TODO: foreign keys
-- TODO: how should we store addresses? -- TODO: how should we store addresses?
-- TODO: creation time? -- TODO: creation time?
-- TODO: permissions. likely similar to infura -- TODO: permissions. likely similar to infura
@ -27,7 +27,7 @@ CREATE TABLE blocklist (
reason TEXT, reason TEXT,
) )
-- TODO: foreign key -- TODO: foreign keys
-- TODO: index on api_key -- TODO: index on api_key
-- TODO: what size for api_key -- TODO: what size for api_key
-- TODO: track active with a timestamp? -- TODO: track active with a timestamp?

View File

@ -7,9 +7,9 @@ default-run = "web3-proxy"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features] [features]
default = ["deadlock_detection"] default = ["deadlock_detection", "verbose_db"]
deadlock_detection = ["parking_lot/deadlock_detection"] deadlock_detection = ["parking_lot/deadlock_detection"]
verbose = ["sea-orm/debug-print"] verbose_db = ["sea-orm/debug-print"]
[dependencies] [dependencies]
redis-cell-client = { path = "../redis-cell-client" } redis-cell-client = { path = "../redis-cell-client" }