Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Commit

Permalink
Bug 1197788 - show root cause in error log message
Browse files Browse the repository at this point in the history
  • Loading branch information
petemoore committed Oct 26, 2015
1 parent e0b40a3 commit 4d0d84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/features/releng_api_proxy.js
Expand Up @@ -59,7 +59,7 @@ export default class RelengAPIProxy {
// wait for the initial server response...
await waitForPort(inspect.NetworkSettings.IPAddress, '80', INIT_TIMEOUT);
} catch (e) {
throw new Error('Failed to initialize releng API proxy service.');
throw new Error('Failed to initialize releng API proxy service due to: ' + e.name + ': ' + e.message);
}

return {
Expand Down

0 comments on commit 4d0d84e

Please sign in to comment.