Removed deprecated OnLogMessage event from importprimscript so it will compile.

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@1902 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
2008-07-08 13:12:46 +00:00
parent da867c3418
commit 9cc490819e

View File

@@ -64,7 +64,6 @@ namespace importprimscript
// Add callback handlers for asset uploads finishing. new prims spotted, and logging
Client.Objects.OnNewPrim += new ObjectManager.NewPrimCallback(Objects_OnNewPrim);
Client.OnLogMessage += new SecondLife.LogCallback(Client_OnLogMessage);
// Optimize the connection for our purposes
Client.Self.Movement.Camera.Far = 64f;
@@ -190,12 +189,6 @@ namespace importprimscript
Client.Network.Logout();
}
static void Client_OnLogMessage(string message, Helpers.LogLevel level)
{
if (level >= Helpers.LogLevel.Warning)
Console.WriteLine(level + ": " + message);
}
static LLUUID UploadImage(string filename, bool lossless)
{
LLUUID newAssetID = LLUUID.Zero;