aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/BaseOpenSimServer.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Update svn properties, formatting cleanup.Jeff Ames2008-08-191-4/+4
|
* * It appears that sometimes some IClientAPI reference is not being released, ↵Justin Clarke Casey2008-08-181-0/+30
| | | | | | | | | resulting in continual execution of the CheckConnectivity timer method * For now, just turn off this timer when we close the connection * Also some minor help refactoring creeps in to this revision.
* Formatting cleanup.Jeff Ames2008-08-181-23/+23
|
* * Insert a new 'set log level [level] command on the console'Justin Clarke Casey2008-08-161-5/+80
| | | | | | | | | * The primary immediate use is to provide a means of temporarily reducing log output on the console when executing console commands * Changing the log level on the console is not permanent and does not affect the log information being put into OpenSim.log * This could have been done by putting in a threshold level on the Console appeneder in OpenSim.exe.config and implementing config watching in the code. * But I think that it's a little more user friendly to make this doable via the console.
* Thanks, BlueWall, for a patch that:Dahlia Trimble2008-08-141-1/+1
| | | | | Binary distributions of OpenSim are not able to get the version info because they lack the ../.svn/entries file. This file exists in the ./bin./svn directory, which would be in a binary distribution. The included patch changes the path from ../.svn/entries to .svn/entries, which allows the version information to be show in "help/about"
* * Register main thread as console thread with thread trackerJustin Clarke Casey2008-08-011-0/+4
|
* * minor: get rid of count number from 'show threads' display since they all ↵Justin Clarke Casey2008-08-011-12/+1
| | | | have IDs
* * minor: Make create user command appear on the region console only if the ↵Justin Clarke Casey2008-07-221-0/+1
| | | | region is running standalone
* * Move thread tracking code to base opensim server so that it's available ↵Justin Clarke Casey2008-07-111-6/+31
| | | | | | | | | for all servers (UGAIM as well as Region) * This will work as long as those servers are actually registering any threads they use (does not include stuff plucked from the thread pool) * command is now "show threads" rather than threads
* Mantis#1685. Thank you kindly, Mjm for a patch that:Charles Krinke2008-07-081-1/+12
| | | | | | | | | The attached patch tries to read the SVN revision from local file "svn_revision" before checking "../.svn/entries". This allows simulators not running from the source tree to properly display the SVN revision, if the installer generates the "svn_revision" file.
* Minor formatting cleanup.Jeff Ames2008-06-181-1/+1
|
* * minor: Print out uptime as well as stats in periodic diagnostics logging, ↵Justin Clarke Casey2008-06-131-5/+27
| | | | so it's easier to tell which isntances each print out of information is from
* Update svn properties, clean up formatting, refactor out duplicate ↵Jeff Ames2008-06-131-11/+11
| | | | hard-coded port numbers.
* * Drop periodic stats logging back down to 60 minutes to reduce console spam. Justin Clarke Casey2008-06-111-1/+1
| | | | | | | * Please feel free to comment if the periodic logging is causing you problems in some way - I'm loathe to add yet another switch to OpenSim.ini but will if it proves necessary
* * Add 'show info' command to all servers, which prints the directory in ↵Justin Clarke Casey2008-06-111-2/+16
| | | | | | | | which the server was started * This is potentially useful if you're using screen on a region console without knowing where it was originally started from
* * minor: Reduce statistic log snapshots to every 20 minutes to get more ↵Justin Clarke Casey2008-06-101-1/+1
| | | | information
* * If a server has statistics, print these out to the log every hour to get ↵Justin Clarke Casey2008-06-101-0/+21
| | | | | | | | some idea of how these evolve * When returning GC.GetTotalMemory(), force collection first in order to get more accurate figures
* Formatting cleanup, minor refactoring, svn properties.Jeff Ames2008-06-041-15/+15
|
* * experimental: Make OpenSim archiver save and reload all prim textures when ↵Justin Clarke Casey2008-06-021-2/+2
| | | | not all faces have the same texture
* * Add 'show version' help information into base OpenSim serverJustin Clarke Casey2008-06-021-1/+2
|
* * Move most bookending startup/shutdown messages to BaseOpenSimServer so ↵Justin Clarke Casey2008-06-011-7/+6
| | | | they appear in non-console servers too
* * Fix build break by eliminating remaining IScenePermissions references - ↵Justin Clarke Casey2008-06-011-1/+1
| | | | | | | | must remember to nant clean * Hook all server startups into base opensim server startup method
* * Move log version printing up into BaseOpenSimServerJustin Clarke Casey2008-06-011-4/+14
|
* * Make version information common to all serversJustin Clarke Casey2008-05-311-0/+82
| | | | | | * Now all servers respond to the "show version" command on the console
* * Implements UserServer logoff in a few situationsTeravus Ovares2008-05-311-0/+1
| | | | | | | * User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
* Formatting cleanup.Jeff Ames2008-05-161-14/+14
|
* * Refactor additional stats collection common code into base opensim serverJustin Clarke Casey2008-05-141-1/+18
| | | | | | * If extra stats not sent to the viewer are available on an opensim server, they are now uniformly accessible using the 'show stats' command
* Formatting cleanup.Jeff Ames2008-05-141-3/+3
|
* From: Alan M Webb <awebb@vnet.ibm.com>Justin Clarke Casey2008-05-121-6/+23
| | | | | | | | This patch just tightens up console handling in BasOpenSimServer and removes (or redirects) a couple of messages that were being issued using Console.Writeline.
* * Fix opensim region server shutdown.Justin Clarke Casey2008-05-091-1/+1
|
* * Move shutdown processing to base OpenSimServer, overriding the method ↵Justin Clarke Casey2008-05-071-1/+17
| | | | | | | | where appropriate * This also means that the command quit (as well as shutdown) will now close down grid servers (instead of only being in place for the region server)
* * Refactored out common http handler operationslbsa712008-03-281-0/+6
|
* Formatting cleanup.Jeff Ames2008-03-181-26/+25
|
* Converted logging to use log4net.Jeff Ames2008-02-051-7/+5
| | | | | | Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
* * Rebase all current servers on common abstract BaseOpenSimServer classJustin Clarke Casey2008-02-041-2/+45
| | | | | | | * The immediate upshot is that "show uptime" from the console will now show uptime on all server types (user, asset, grid, etc) * DEV: This refactoring is far from complete - only just enough to makes the "show uptime" command common accross the servers. More is needed, but in this case it's somewhat like eating cabbage, which I prefer not to do all at once
* * Add missed out evn:eol-style nativeJustin Clarke Casey2008-01-251-43/+43
| | | | | | | | * I intended to think about refactoring the servers to use this common base class, but temporary laziness won out. * I'm leaving this here as a reminder/mind poke and for reasons of laziness (again) * If people object to me leaving this kind of thing lying around, please say
* * Add very basic initial login stats to the user serverJustin Clarke Casey2008-01-251-0/+43
* Typing 'stats' on the command line will given total number of successful logins today and yesterday * A little bit more to come, probably * Refactoring will follow next