Skip to content

Commit

Permalink
Fix certificate log message for ECDSA
Browse files Browse the repository at this point in the history
  • Loading branch information
enteryournamehere committed Mar 4, 2023
1 parent 78dbae5 commit 0140d6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Uchu.Core/UchuServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public virtual async Task ConfigureAsync(string configFile)
if (Config.Networking?.Certificate != default && File.Exists(certificateFilePath))
{
var cert = new X509Certificate2(certificateFilePath);
Logger.Information($"PRIVATE KEY: {cert.HasPrivateKey} {cert.PrivateKey}");
Logger.Information($"Using certificate: {certificateFilePath}");
Certificate = cert;
RakNetServer = new TcpUdpServer(Port, "3.25 ND1", Certificate, 150);
}
Expand Down

0 comments on commit 0140d6b

Please sign in to comment.