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 fbc782b commit 35ea013Copy full SHA for 35ea013
Dockerfile
@@ -7,7 +7,7 @@ COPY Cargo.toml Cargo.toml
7
RUN cargo install --path .
8
9
FROM debian:bookworm-slim
10
-RUN apt-get update && apt-get install -y libssl-dev && rm -rf /var/lib/apt/lists/*
+RUN apt-get update && apt-get install -y libssl-dev ca-certificates && rm -rf /var/lib/apt/lists/*
11
COPY --from=builder /usr/local/cargo/bin/cm-api-rs /usr/local/bin/cm-api-rs
12
13
CMD ["cm-api-rs"]
src/logging.rs
@@ -43,8 +43,6 @@ pub async fn log_external(
43
None => return Err(Box::new(LogError {})),
44
};
45
46
- println!("here");
47
-
48
let json = ExternalLog {
49
embeds: vec![ExternalLogEmbed {
50
title: title,
0 commit comments