aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorKevin Cozens2016-07-08 16:04:36 -0400
committerKevin Cozens2016-07-08 21:21:46 -0400
commit21de9162258057a59cf42acad89938b353c02d6f (patch)
treea03537f16a8d8c5a0408b8be4cfcaf6377ea509b /OpenSim
parent add a simple files expire to Xfer to catch some that never got a request (op... (diff)
downloadopensim-SC_OLD-21de9162258057a59cf42acad89938b353c02d6f.zip
opensim-SC_OLD-21de9162258057a59cf42acad89938b353c02d6f.tar.gz
opensim-SC_OLD-21de9162258057a59cf42acad89938b353c02d6f.tar.bz2
opensim-SC_OLD-21de9162258057a59cf42acad89938b353c02d6f.tar.xz
Fixed the order of two file names used in a warning.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Framework/Util.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs
index 65b2a5c..1b3a4c3 100644
--- a/OpenSim/Framework/Util.cs
+++ b/OpenSim/Framework/Util.cs
@@ -1303,7 +1303,7 @@ namespace OpenSim.Framework
1303 } 1303 }
1304 catch (Exception e) 1304 catch (Exception e)
1305 { 1305 {
1306 m_log.WarnFormat("[UTILS]: Exception copying configuration file {0} to {1}: {2}", configFile, exampleConfigFile, e.Message); 1306 m_log.WarnFormat("[UTILS]: Exception copying configuration file {0} to {1}: {2}", exampleConfigFile, configFile, e.Message);
1307 return false; 1307 return false;
1308 } 1308 }
1309 } 1309 }