We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95f4adf commit 1386278Copy full SHA for 1386278
Cargo.toml
@@ -4,7 +4,7 @@ edition = "2021"
4
license = "MIT"
5
name = "pg_task"
6
repository = "https://github.com/imbolc/pg_task"
7
-version = "0.2.0"
+version = "0.2.1"
8
9
[dependencies]
10
async-trait = "0.1"
@@ -22,7 +22,7 @@ sqlx = { version = "0.8", features = [
22
"runtime-tokio-rustls",
23
"uuid",
24
] }
25
-thiserror = "1"
+thiserror = "2"
26
tokio = "1"
27
tracing = "0.1"
28
src/task.rs
@@ -151,7 +151,7 @@ impl Task {
151
Ok(x) => x,
152
Err(e) => return self.save_error(db, e.into()).await,
153
};
154
- info!("[{}] moved to the next step {step}", self.id);
+ debug!("[{}] moved to the next step {step}", self.id);
155
156
sqlx::query!(
157
"
0 commit comments