From 469bb7fbfd61af324a81d589145edfb8ae111f96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Bigio?= Date: Thu, 14 Jan 2016 10:01:39 -0800 Subject: [PATCH] Improve error wording when fail to launch debugger Reviewed By: javache Differential Revision: D2829484 fb-gh-sync-id: a3402ece1f5cd19e8408fa3ab89adf7a26c66de9 --- Libraries/WebSocket/RCTWebSocketExecutor.m | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Libraries/WebSocket/RCTWebSocketExecutor.m b/Libraries/WebSocket/RCTWebSocketExecutor.m index e84539a73..bc8d2b7fd 100644 --- a/Libraries/WebSocket/RCTWebSocketExecutor.m +++ b/Libraries/WebSocket/RCTWebSocketExecutor.m @@ -80,8 +80,9 @@ RCT_EXPORT_MODULE() retries--; } if (!runtimeIsReady) { - RCTLogError(@"Runtime is not ready. Make sure Chrome is running and not " - "paused on a breakpoint or exception and try reloading again."); + RCTLogError(@"Runtime is not ready for debugging.\n " + "- Make sure Packager server is running.\n" + "- Make sure Chrome is running and not paused on a breakpoint or exception and try reloading again."); [self invalidate]; return; }