Skip to content

Commit

Permalink
Merge branch 'master' into typed-graphql-error-equals-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Conor Landry committed Oct 21, 2021
2 parents 7ce00ef + 15d4b56 commit fe33db7
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -72,7 +72,7 @@ data class GraphQLResponse(val json: String, val headers: Map<String, List<Strin
try {
return parsed.read(dataPath)
} catch (ex: Exception) {
logger.error("Error extracting path '$path' from data: '$data'")
logger.warn("Error extracting path '$path' from data: '$data'")
throw ex
}
}
Expand All @@ -86,7 +86,7 @@ data class GraphQLResponse(val json: String, val headers: Map<String, List<Strin
try {
return parsed.read(dataPath, clazz)
} catch (ex: Exception) {
logger.error("Error extracting path '$path' from data: '$data'")
logger.warn("Error extracting path '$path' from data: '$data'")
throw ex
}
}
Expand All @@ -101,7 +101,7 @@ data class GraphQLResponse(val json: String, val headers: Map<String, List<Strin
try {
return parsed.read(dataPath, typeRef)
} catch (ex: Exception) {
logger.error("Error extracting path '$path' from data: '$data'")
logger.warn("Error extracting path '$path' from data: '$data'")
throw ex
}
}
Expand Down

0 comments on commit fe33db7

Please sign in to comment.