Browse Source

Clarify error message with details

master
Lyubomir Marinov 8 years ago
parent
commit
8f02b9249e
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      react/features/base/lib-jitsi-meet/functions.js

+ 3
- 1
react/features/base/lib-jitsi-meet/functions.js View File

@@ -22,7 +22,9 @@ export function loadConfig(host, configLocation = '/config.js') {
22 22
             return config;
23 23
         })
24 24
         .catch(error => {
25
-            console.error('Failed to load config.js from remote server', error);
25
+            console.error(
26
+                    `Failed to load ${configLocation} from ${host}`,
27
+                    error);
26 28
 
27 29
             throw error;
28 30
         });

Loading…
Cancel
Save