Skip to content

Commit

Permalink
drop debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
ssddOnTop committed Apr 14, 2024
1 parent 77a1fed commit 94d2433
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/document.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fn print_directives(directives: &[Positioned<ConstDirective>]) -> String {
.join(" ");

if !directives.is_empty() {
directives = directives + " "
directives += " "
}

directives
Expand All @@ -28,7 +28,6 @@ fn pos<A>(a: A) -> Positioned<A> {

fn print_schema(schema: &SchemaDefinition) -> String {
let directives = print_directives(&schema.directives);
println!("d: {:?}",directives.as_bytes());

let query = schema
.query
Expand Down

0 comments on commit 94d2433

Please sign in to comment.