-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updates for 0.4 release #425
Conversation
@@ -63,11 +63,35 @@ The main program starts by creating a connection to the server: | |||
using ILoggerFactory loggerFactory = LoggerFactory.Create(builder => | |||
builder | |||
.AddSimpleConsole() | |||
.AddFilter("IceRpc", LogLevel.Debug)); | |||
.AddFilter("IceRpc", LogLevel.Information)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The documentation doesn't match the actual templates. This was changed in icerpc/icerpc-csharp#3840
.AddFilter("IceRpc", LogLevel.Information)); | ||
|
||
// Path to the root CA certificate. | ||
using var rootCA = X509CertificateLoader.LoadCertificateFromFile("certs/cacert.der"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The templates were updated to use SSL
@@ -181,27 +200,15 @@ dotnet run | |||
The client sends a single `greet` request to the service hosted by our server: | |||
|
|||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the logger output to match that of the new log level.
Misc updates for 0.4 release