-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(rpc): logging for server and client (#1251)
* feat(rpc): logging for server and client * fix: CryptolConnection dflt val for proc * fix: activate logging on connection, not process * chore: remove unnecessary proc field
- Loading branch information
Andrew Kent
authored
Jul 23, 2021
1 parent
e6f80ed
commit 8e7e047
Showing
7 changed files
with
104 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule argo
updated
15 files
+1 −1 | .github/workflows/ci.yml | |
+1 −1 | argo/argo.cabal | |
+94 −35 | argo/src/Argo.hs | |
+15 −2 | argo/src/Argo/DefaultMain.hs | |
+30 −11 | argo/src/Argo/ServerState.hs | |
+2 −1 | file-echo-api/file-echo-api.cabal | |
+3 −0 | file-echo-api/file-echo-api/Main.hs | |
+3 −0 | file-echo-api/mutable-file-echo-api/Main.hs | |
+75 −0 | file-echo-api/src/FileEchoServer.hs | |
+77 −0 | file-echo-api/src/MutableFileEchoServer.hs | |
+4 −0 | python/CHANGELOG.md | |
+35 −3 | python/argo_client/connection.py | |
+1 −1 | python/setup.py | |
+202 −43 | python/tests/test_file_echo_api.py | |
+132 −25 | python/tests/test_mutable_file_echo_api.py |