Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim
commit
e7e3c74fb7
|
@ -651,8 +651,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
// Make sure that we see any exception caused by the asynchronous operation.
|
// Make sure that we see any exception caused by the asynchronous operation.
|
||||||
m_log.Error(
|
m_log.ErrorFormat(
|
||||||
string.Format("[LLCLIENTVIEW]: Caught exception while processing {0}", packetObject.Pack), e);
|
"[LLCLIENTVIEW]: Caught exception while processing {0} for {1}, {2} {3}",
|
||||||
|
packetObject.Pack, Name, e.Message, e.StackTrace);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,9 @@
|
||||||
StorageProvider = "OpenSim.Data.SQLiteLegacy.dll"
|
StorageProvider = "OpenSim.Data.SQLiteLegacy.dll"
|
||||||
ConnectionString = "URI=file:OpenSim.db,version=3,UseUTF16Encoding=True"
|
ConnectionString = "URI=file:OpenSim.db,version=3,UseUTF16Encoding=True"
|
||||||
|
|
||||||
|
[AssetService]
|
||||||
|
ConnectionString = "URI=file:Asset.db,version=3"
|
||||||
|
|
||||||
[AvatarService]
|
[AvatarService]
|
||||||
ConnectionString = "URI=file:avatars.db,version=3"
|
ConnectionString = "URI=file:avatars.db,version=3"
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,9 @@
|
||||||
StorageProvider = "OpenSim.Data.SQLite.dll"
|
StorageProvider = "OpenSim.Data.SQLite.dll"
|
||||||
ConnectionString = "URI=file:OpenSim.db,version=3,UseUTF16Encoding=True"
|
ConnectionString = "URI=file:OpenSim.db,version=3,UseUTF16Encoding=True"
|
||||||
|
|
||||||
|
[AssetService]
|
||||||
|
ConnectionString = "URI=file:Asset.db,version=3"
|
||||||
|
|
||||||
[InventoryService]
|
[InventoryService]
|
||||||
;ConnectionString = "URI=file:inventory.db,version=3"
|
;ConnectionString = "URI=file:inventory.db,version=3"
|
||||||
; if you have a legacy inventory store use the connection string below
|
; if you have a legacy inventory store use the connection string below
|
||||||
|
|
Loading…
Reference in New Issue