Skip to content

Commit 1386278

Browse files
committed
Change log levels
1 parent 95f4adf commit 1386278

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = "2021"
44
license = "MIT"
55
name = "pg_task"
66
repository = "https://github.com/imbolc/pg_task"
7-
version = "0.2.0"
7+
version = "0.2.1"
88

99
[dependencies]
1010
async-trait = "0.1"
@@ -22,7 +22,7 @@ sqlx = { version = "0.8", features = [
2222
"runtime-tokio-rustls",
2323
"uuid",
2424
] }
25-
thiserror = "1"
25+
thiserror = "2"
2626
tokio = "1"
2727
tracing = "0.1"
2828

src/task.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ impl Task {
151151
Ok(x) => x,
152152
Err(e) => return self.save_error(db, e.into()).await,
153153
};
154-
info!("[{}] moved to the next step {step}", self.id);
154+
debug!("[{}] moved to the next step {step}", self.id);
155155

156156
sqlx::query!(
157157
"

0 commit comments

Comments
 (0)