Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Fixes for review comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
humphd committed Mar 3, 2015
1 parent 317f114 commit 7bc69e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/LiveDevelopment/LiveDevMultiBrowser.js
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,8 @@ define(function (require, exports, module) {
*/
function setLauncher(launcher) {
if (!(launcher && launcher.launch)) {
throw new Error("LiveDevMultiBrowser.setLauncher(): launcher must have `launch` method");
console.log("Invalid launcher object: ", launcher, new Error("LiveDevMultiBrowser.setLauncher()"));
return;
}
_launcher = launcher;
}
Expand Down

0 comments on commit 7bc69e4

Please sign in to comment.