Skip to content

Commit

Permalink
Remove debug logger
Browse files Browse the repository at this point in the history
  • Loading branch information
DZakh authored and JonoPrest committed Nov 19, 2024
1 parent 548179c commit 449b4d1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,6 @@ module HeightQuery = {
//Retry if the height is 0 (expect height to be greater)
while height.contents <= 0 {
let res = await HyperFuelJsonApi.getArchiveHeight(~serverUrl)
Logging.debug({"msg": "querying height", "response": res})
switch res {
| Ok({height: newHeight}) => height := newHeight
| Error(e) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@ module Query = {
let executeHyperSyncQuery = (~serverUrl, ~postQueryBody: QueryTypes.postQueryBody): promise<
result<ResponseTypes.queryResponse, Query.queryError>,
> => {
Logging.debug({"msg": "Executing HyperSync query", "body": postQueryBody})
Query.executeFetchRequest(
~endpoint=serverUrl ++ "/query",
~method=#POST,
Expand Down

0 comments on commit 449b4d1

Please sign in to comment.