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 41c0119 commit 0df70c8Copy full SHA for 0df70c8
src/traits.rs
@@ -83,7 +83,7 @@ pub trait Context {
83
/// use proxy_wasm::traits::*;
84
/// use proxy_wasm::types::*;
85
/// use std::time::Duration;
86
- /// use log::warn;
+ /// use log::{debug, warn};
87
///
88
/// struct MyPlugin;
89
@@ -113,7 +113,7 @@ pub trait Context {
113
/// let headers = self.get_http_call_response_headers();
114
/// let body = self.get_http_call_response_body(0, body_size);
115
116
- /// info!("Received response headers: {:?}", headers);
+ /// debug!("Received response headers: {:?}", headers);
117
118
/// // Do something with the response
119
/// }
0 commit comments