Mercurial > 510Connectbot
changeset 484:2043bbaac86e
fix typo in log message
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 14 Oct 2020 08:02:07 -0700 |
parents | 84bab82d1f58 |
children | 5c2069636dff |
files | app/src/main/java/com/five_ten_sg/connectbot/ConsoleActivity.java |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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) {