diff options
author | Jeff Ames | 2007-10-31 07:56:31 +0000 |
---|---|---|
committer | Jeff Ames | 2007-10-31 07:56:31 +0000 |
commit | 13854d562f890f59b373697b0785bde5e09b757f (patch) | |
tree | cb512750e6b17f035145d519a6926a3a22722d4c /OpenSim/Grid/UserServer.Config/DbUserConfig.cs | |
parent | * Moved OpenSim/Framework/General to OpenSim/Framework for great justice. (diff) | |
download | opensim-SC_OLD-13854d562f890f59b373697b0785bde5e09b757f.zip opensim-SC_OLD-13854d562f890f59b373697b0785bde5e09b757f.tar.gz opensim-SC_OLD-13854d562f890f59b373697b0785bde5e09b757f.tar.bz2 opensim-SC_OLD-13854d562f890f59b373697b0785bde5e09b757f.tar.xz |
fixed filenames in log messages
Diffstat (limited to 'OpenSim/Grid/UserServer.Config/DbUserConfig.cs')
-rw-r--r-- | OpenSim/Grid/UserServer.Config/DbUserConfig.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Grid/UserServer.Config/DbUserConfig.cs b/OpenSim/Grid/UserServer.Config/DbUserConfig.cs index cb0dbdd..1f93779 100644 --- a/OpenSim/Grid/UserServer.Config/DbUserConfig.cs +++ b/OpenSim/Grid/UserServer.Config/DbUserConfig.cs | |||
@@ -47,7 +47,7 @@ namespace OpenUser.Config.UserConfigDb4o | |||
47 | private IObjectContainer db; | 47 | private IObjectContainer db; |
48 | 48 | ||
49 | public void LoadDefaults() { | 49 | public void LoadDefaults() { |
50 | MainLog.Instance.Notice("Config.cs:LoadDefaults() - Please press enter to retain default or enter new settings"); | 50 | MainLog.Instance.Notice("DbUserConfig.cs:LoadDefaults() - Please press enter to retain default or enter new settings"); |
51 | 51 | ||
52 | this.DefaultStartupMsg = MainLog.Instance.CmdPrompt("Default startup message", "Welcome to OGS"); | 52 | this.DefaultStartupMsg = MainLog.Instance.CmdPrompt("Default startup message", "Welcome to OGS"); |
53 | 53 | ||
@@ -61,7 +61,7 @@ namespace OpenUser.Config.UserConfigDb4o | |||
61 | db = Db4oFactory.OpenFile("openuser.yap"); | 61 | db = Db4oFactory.OpenFile("openuser.yap"); |
62 | IObjectSet result = db.Get(typeof(DbUserConfig)); | 62 | IObjectSet result = db.Get(typeof(DbUserConfig)); |
63 | if(result.Count==1) { | 63 | if(result.Count==1) { |
64 | MainLog.Instance.Verbose("Config.cs:InitConfig() - Found a UserConfig object in the local database, loading"); | 64 | MainLog.Instance.Verbose("DbUserConfig.cs:InitConfig() - Found a UserConfig object in the local database, loading"); |
65 | foreach (DbUserConfig cfg in result) { | 65 | foreach (DbUserConfig cfg in result) { |
66 | this.GridServerURL=cfg.GridServerURL; | 66 | this.GridServerURL=cfg.GridServerURL; |
67 | this.GridSendKey=cfg.GridSendKey; | 67 | this.GridSendKey=cfg.GridSendKey; |
@@ -69,14 +69,14 @@ namespace OpenUser.Config.UserConfigDb4o | |||
69 | this.DefaultStartupMsg=cfg.DefaultStartupMsg; | 69 | this.DefaultStartupMsg=cfg.DefaultStartupMsg; |
70 | } | 70 | } |
71 | } else { | 71 | } else { |
72 | MainLog.Instance.Verbose("Config.cs:InitConfig() - Could not find object in database, loading precompiled defaults"); | 72 | MainLog.Instance.Verbose("DbUserConfig.cs:InitConfig() - Could not find object in database, loading precompiled defaults"); |
73 | LoadDefaults(); | 73 | LoadDefaults(); |
74 | MainLog.Instance.Verbose("Writing out default settings to local database"); | 74 | MainLog.Instance.Verbose("Writing out default settings to local database"); |
75 | db.Set(this); | 75 | db.Set(this); |
76 | db.Close(); | 76 | db.Close(); |
77 | } | 77 | } |
78 | } catch(Exception e) { | 78 | } catch(Exception e) { |
79 | MainLog.Instance.Warn("Config.cs:InitConfig() - Exception occured"); | 79 | MainLog.Instance.Warn("DbUserConfig.cs:InitConfig() - Exception occured"); |
80 | MainLog.Instance.Warn(e.ToString()); | 80 | MainLog.Instance.Warn(e.ToString()); |
81 | } | 81 | } |
82 | 82 | ||