# HG changeset patch # User Carl Byington # Date 1602687727 25200 # Node ID 2043bbaac86e5a587b0d0ba803d85c3fbd384b5f # Parent 84bab82d1f588743850f7940f882826482aa233f fix typo in log message diff -r 84bab82d1f58 -r 2043bbaac86e app/src/main/java/com/five_ten_sg/connectbot/ConsoleActivity.java --- a/app/src/main/java/com/five_ten_sg/connectbot/ConsoleActivity.java Mon Jun 01 15:47:47 2020 -0700 +++ b/app/src/main/java/com/five_ten_sg/connectbot/ConsoleActivity.java Wed Oct 14 08:02:07 2020 -0700 @@ -171,7 +171,7 @@ // If we didn't find the requested connection, try opening it if (requestedNickname != null && requestedBridge == null) { try { - Log.d(TAG, String.format("We couldnt find an existing bridge with URI=%s (nickname=%s), so creating one now", requested.toString(), requestedNickname)); + Log.d(TAG, String.format("We could not find an existing bridge with URI=%s (nickname=%s), so creating one now", requested.toString(), requestedNickname)); requestedBridge = bound.openConnection(requested); } catch (Exception e) { @@ -1249,8 +1249,7 @@ if (requestedBridge == null) { // If we didn't find the requested connection, try opening it try { - Log.d(TAG, String.format("We couldnt find an existing bridge with URI=%s (nickname=%s)," + - "so creating one now", requested.toString(), requested.getFragment())); + Log.d(TAG, String.format("We could not find an existing bridge with URI=%s (nickname=%s), so creating one now", requested.toString(), requested.getFragment())); requestedBridge = bound.openConnection(requested); } catch (Exception e) {