We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 909d497 commit 070391eCopy full SHA for 070391e
1 file changed
oximeter/producer/src/lib.rs
@@ -9,7 +9,6 @@
9
use dropshot::endpoint;
10
use dropshot::ApiDescription;
11
use dropshot::ConfigDropshot;
12
-use dropshot::ConfigLogging;
13
use dropshot::HttpError;
14
use dropshot::HttpResponseOk;
15
use dropshot::HttpServer;
@@ -42,6 +41,13 @@ use std::time::Duration;
42
41
use thiserror::Error;
43
use uuid::Uuid;
44
+// Our public interface depends directly or indirectly on these types; we
45
+// export them so that consumers need not depend on dropshot themselves and
46
+// to simplify how we stage incompatible upgrades.
47
+pub use dropshot::ConfigLogging;
48
+pub use dropshot::ConfigLoggingIfExists;
49
+pub use dropshot::ConfigLoggingLevel;
50
+
51
#[derive(Debug, Clone, Error)]
52
pub enum Error {
53
#[error("Error running producer HTTP server: {0}")]
0 commit comments