浏览代码

Clarify error message with details

master
Lyubomir Marinov 8 年前
父节点
当前提交
8f02b9249e
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3
    1
      react/features/base/lib-jitsi-meet/functions.js

+ 3
- 1
react/features/base/lib-jitsi-meet/functions.js 查看文件

22
             return config;
22
             return config;
23
         })
23
         })
24
         .catch(error => {
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
             throw error;
29
             throw error;
28
         });
30
         });

正在加载...
取消
保存