Created
February 25, 2019 21:34
-
-
Save bIgBV/7bf58068ba13e90d35386ff48aa8ad8b to your computer and use it in GitHub Desktop.
An example of how logging macros might work
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async fn handle_graphql( | |
ctx: AppData<Context>, | |
query: body::Json<juniper::http::GraphQLRequest>, | |
) -> Response { | |
let response = query.execute(&Schema::new(Query, Mutation), &ctx); | |
debug!("Query: {:?} response: {}", query, response); | |
let status = if response.is_ok() { | |
StatusCode::OK | |
} else { | |
StatusCode::BAD_REQUEST | |
}; | |
body::Json(response).with_status(status).into_response() | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Start serving the app at the given address. | |
/// | |
/// Blocks the calling thread indefinitely. | |
pub fn serve(self) { | |
let configuration = self.get_item::<Configuration>().unwrap(); | |
let addr = format!("{}:{}", configuration.address, configuration.port) | |
.parse::<std::net::SocketAddr>() | |
.unwrap(); | |
info!("Server is listening on: http://{}", addr); | |
crate::serve::serve(self.into_server(), addr); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment