Skip to content

Commit

Permalink
Update curlEngine.d
Browse files Browse the repository at this point in the history
* Fix logging output
  • Loading branch information
abraunegg committed Oct 16, 2024
1 parent fea92ff commit 46ed402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/curlEngine.d
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ class CurlEngine {
http = HTTP(); // Directly initializes HTTP using its default constructor
response = null; // Initialize as null
internalThreadId = generateAlphanumericString(); // Give this CurlEngine instance a unique ID
addLogEntry("Created new CurlEngine instance id: " ~ to!string(internalThreadId));
if (debugLogging) {addLogEntry("Created new CurlEngine instance id: " ~ to!string(internalThreadId), ["debug"]);}
}

// The destructor should only clean up resources owned directly by this CurlEngine instance
Expand Down

0 comments on commit 46ed402

Please sign in to comment.