From 21de9162258057a59cf42acad89938b353c02d6f Mon Sep 17 00:00:00 2001 From: Kevin Cozens Date: Fri, 8 Jul 2016 16:04:36 -0400 Subject: [PATCH] Fixed the order of two file names used in a warning. --- OpenSim/Framework/Util.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index 65b2a5cdf9..1b3a4c3599 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs @@ -1303,7 +1303,7 @@ namespace OpenSim.Framework } catch (Exception e) { - m_log.WarnFormat("[UTILS]: Exception copying configuration file {0} to {1}: {2}", configFile, exampleConfigFile, e.Message); + m_log.WarnFormat("[UTILS]: Exception copying configuration file {0} to {1}: {2}", exampleConfigFile, configFile, e.Message); return false; } }