|
|
@@ -135,8 +135,11 @@ export default function JitsiConference(options) {
|
|
135
|
135
|
const errmsg
|
|
136
|
136
|
= 'Invalid conference name (no conference name passed or it '
|
|
137
|
137
|
+ 'contains invalid characters like capital letters)!';
|
|
|
138
|
+ const additionalLogMsg = options.name
|
|
|
139
|
+ ? `roomName=${options.name}; condition - ${options.name.toLowerCase()}!==${options.name.toString()}`
|
|
|
140
|
+ : 'No room name passed!';
|
|
138
|
141
|
|
|
139
|
|
- logger.error(errmsg);
|
|
|
142
|
+ logger.error(`${errmsg} ${additionalLogMsg}`);
|
|
140
|
143
|
throw new Error(errmsg);
|
|
141
|
144
|
}
|
|
142
|
145
|
this.connection = options.connection;
|