summaryrefslogtreecommitdiff
path: root/misc/freeswitch/scripts/common/conference.lua
diff options
context:
space:
mode:
authorPeter Kozak <spag@golwen.net>2013-03-12 06:53:50 -0400
committerPeter Kozak <spag@golwen.net>2013-03-12 06:53:50 -0400
commite7db59fed6e91ef5b6125587541f55235b082dfe (patch)
tree9aa5c9a76f2de6e325cd9015c66520844ad4f7fc /misc/freeswitch/scripts/common/conference.lua
parent40b2feb99d75074319f371087c521df198527266 (diff)
wording
Diffstat (limited to 'misc/freeswitch/scripts/common/conference.lua')
-rw-r--r--misc/freeswitch/scripts/common/conference.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/freeswitch/scripts/common/conference.lua b/misc/freeswitch/scripts/common/conference.lua
index b50c134..9339bdc 100644
--- a/misc/freeswitch/scripts/common/conference.lua
+++ b/misc/freeswitch/scripts/common/conference.lua
@@ -188,7 +188,7 @@ function Conference.enter(self, caller, domain)
elseif self:check_ownership() then
self.settings.flags.moderator = true;
self.pin = nil;
- self.log:info('CONFERENCE ', self.id, ' - owner: ', self.caller.auth_account.owner.class,'=', self.caller.auth_account.owner.id, '/', self.caller.auth_account.owner.uuid, ', speaker: ', not self.settings.flags.mute, ', moderator: ', self.settings.flags.moderator);
+ self.log:info('CONFERENCE ', self.id, ' - owner authenticated: ', self.caller.auth_account.owner.class,'=', self.caller.auth_account.owner.id, '/', self.caller.auth_account.owner.uuid, ', speaker: ', not self.settings.flags.mute, ', moderator: ', self.settings.flags.moderator);
elseif not self.open_for_public then
self.log:notice('CONFERENCE ', self.id, ' - not open for public');
return { continue = false, code = 493, phrase = 'Conference closed' };