diff options
author | Melanie | 2009-08-04 00:38:20 +0100 |
---|---|---|
committer | Melanie | 2009-08-04 00:38:20 +0100 |
commit | fa20a2685bc7bb94ef0f963cae0ebee38cdc9724 (patch) | |
tree | 9f172c24903452deff2301dd6f4cefe3fa6267d0 | |
parent | hopefully last cia test (diff) | |
download | opensim-SC_OLD-fa20a2685bc7bb94ef0f963cae0ebee38cdc9724.zip opensim-SC_OLD-fa20a2685bc7bb94ef0f963cae0ebee38cdc9724.tar.gz opensim-SC_OLD-fa20a2685bc7bb94ef0f963cae0ebee38cdc9724.tar.bz2 opensim-SC_OLD-fa20a2685bc7bb94ef0f963cae0ebee38cdc9724.tar.xz |
Output the Freeswitch context received and the context set up in the
debugging message so a mismatch can be corrected more easily
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDialplan.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDialplan.cs b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDialplan.cs index bb3dca5..703c1e7 100644 --- a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDialplan.cs +++ b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDialplan.cs | |||
@@ -56,7 +56,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice | |||
56 | response["int_response_code"] = 200; | 56 | response["int_response_code"] = 200; |
57 | if (Context != requestcontext) | 57 | if (Context != requestcontext) |
58 | { | 58 | { |
59 | m_log.Debug("[FreeSwitchDirectory] returning empty as it's for another context"); | 59 | m_log.DebugFormat("[FreeSwitchDirectory] returning empty as it's for context {0} and we are using {1}", requestcontext, Context); |
60 | response["str_response_string"] = ""; | 60 | response["str_response_string"] = ""; |
61 | } else { | 61 | } else { |
62 | response["str_response_string"] = String.Format(@"<?xml version=""1.0"" encoding=""utf-8""?> | 62 | response["str_response_string"] = String.Format(@"<?xml version=""1.0"" encoding=""utf-8""?> |