Skip to content

Commit bb3b9f7

Browse files
Vlad-00003ads102003
authored andcommitted
Fix for format exception in OnRemovedFromManager
1 parent 4971080 commit bb3b9f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Libraries/MySql.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ private void OnRemovedFromManager(Plugin sender, PluginManager manager)
267267

268268
if (connection.Value.Con?.State != ConnectionState.Closed)
269269
{
270-
Interface.Oxide.LogWarning("Unclosed MySQL connection from plugin '{1}', closing...", sender.Name);
270+
Interface.Oxide.LogWarning("Unclosed MySQL connection from plugin '{0}', closing...", sender.Name);
271271
}
272272

273273
connection.Value.Con?.Close();

0 commit comments

Comments
 (0)