Fix lbrylog fopen

This commit is contained in:
Ralph 2022-11-17 14:31:15 -05:00 committed by GitHub
parent bfe8a85f39
commit d5bac18f36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,7 @@ void initlog(const char *algo)
sprintf(debugfile, "%s.log", algo);
g_debuglog = fopen(debugfile, "w");
g_stratumlog = fopen("lbry.log", "a");
g_lbrylog = fopen("lbry.log", "a");
g_stratumlog = fopen("stratum.log", "a");
g_clientlog = fopen("client.log", "a");
g_rejectlog = fopen("reject.log", "a");