ソースを参照

Clarify error message with details

j8
Lyubomir Marinov 9年前
コミット
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,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
         });

読み込み中…
キャンセル
保存