Fix: Memory leak
All checks were successful
Build and deploy automation_rs / Build automation_rs (push) Successful in 4m19s
Build and deploy automation_rs / Build Docker image (push) Successful in 1m3s
Build and deploy automation_rs / Deploy Docker container (push) Successful in 31s

It turns out that console-subscriber has a memory leak, this is fixed in
main, but there has not been a new release yet. So for now we go back
to tracing subscriber.
This commit is contained in:
Dreaded_X 2024-05-03 01:07:24 +02:00
parent 40ba4c47cf
commit cde9654a78
Signed by: Dreaded_X
GPG Key ID: FA5F485356B0D2D4

View File

@ -44,7 +44,8 @@ async fn main() {
async fn app() -> anyhow::Result<()> {
dotenv().ok();
console_subscriber::init();
tracing_subscriber::fmt::init();
// console_subscriber::init();
info!("Starting automation_rs...");