minor: log an error rather than info if a connector fails to load.

0.7.4-extended
Justin Clark-Casey (justincc) 2013-03-15 22:08:11 +00:00
parent f8067f02fe
commit eafcc6f2b2
1 changed files with 2 additions and 2 deletions

View File

@ -120,7 +120,7 @@ namespace OpenSim.Server
} }
else else
{ {
m_log.InfoFormat("[SERVER]: Failed to load {0}", conn); m_log.ErrorFormat("[SERVER]: Failed to load {0}", conn);
} }
} }
int res = m_Server.Run(); int res = m_Server.Run();
@ -130,4 +130,4 @@ namespace OpenSim.Server
return 0; return 0;
} }
} }
} }