Skip to content

Instantly share code, notes, and snippets.

@bIgBV
Created February 25, 2019 21:34
Show Gist options
  • Save bIgBV/7bf58068ba13e90d35386ff48aa8ad8b to your computer and use it in GitHub Desktop.
Save bIgBV/7bf58068ba13e90d35386ff48aa8ad8b to your computer and use it in GitHub Desktop.
An example of how logging macros might work
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()
}
/// 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