fix: add logging and a default value for not null sql
This commit is contained in:
parent
43c5cd2eff
commit
a62f893a98
2 changed files with 6 additions and 3 deletions
|
@ -136,7 +136,10 @@ async fn main() {
|
|||
let config = get_config();
|
||||
let db = match db_init(&config).await {
|
||||
Ok(x) => x,
|
||||
Err(_) => return,
|
||||
Err(err) => {
|
||||
dbg!(err);
|
||||
return
|
||||
},
|
||||
};
|
||||
|
||||
// Intents are a bitflag, bitwise operations can be used to dictate which intents to use
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue