Skip to content

Commit

Permalink
Remove debug logging
Browse files Browse the repository at this point in the history
This was accidentally left in during development
  • Loading branch information
c42f committed Oct 29, 2021
1 parent 14a2770 commit b500729
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "RemoteREPL"
uuid = "1bd9f7bb-701c-4338-bec7-ac987af7c555"
authors = ["Chris Foster <[email protected]> and contributors"]
version = "0.2.8"
version = "0.2.9"

[deps]
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
Expand Down
1 change: 0 additions & 1 deletion src/client.jl
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ function send_and_receive(conn::Connection, request; read_response=true)
# and corrupt the stream. However, there's not much we can do about
# this without improving the Julia runtime.
if exc isa InterruptException
@info "Got interrupt" i
if i < max_tries
send_interrupt(conn)
continue
Expand Down

4 comments on commit b500729

@c42f
Copy link
Collaborator Author

@c42f c42f commented on b500729 Oct 29, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/47724

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.9 -m "<description of version>" b5007290127d46defbf4a1b73cf6eb754af5981f
git push origin v0.2.9

Also, note the warning: Version 0.2.9 skips over 0.2.8
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

@c42f
Copy link
Collaborator Author

@c42f c42f commented on b500729 Oct 29, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/47724

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.9 -m "<description of version>" b5007290127d46defbf4a1b73cf6eb754af5981f
git push origin v0.2.9

Please sign in to comment.