comparison src/ch/ethz/ssh2/log/Logger.java @ 375:8c1451f51a5e

kex error fixed; order encryption, hash, and kex algorithms properly, strongest preferred
author Carl Byington <carl@five-ten-sg.com>
date Mon, 04 Aug 2014 14:21:32 -0700
parents f4d595402a2f
children 711ad4cf87b6
comparison
equal deleted inserted replaced
374:597138203c15 375:8c1451f51a5e
7 7
8 import android.util.Log; 8 import android.util.Log;
9 9
10 public class Logger { 10 public class Logger {
11 private static final String TAG = "ConnectBot.ssh"; 11 private static final String TAG = "ConnectBot.ssh";
12 public static boolean enabled = true; 12 public static boolean enabled = false;
13 13
14 public static Logger getLogger(Class<?> x) { 14 public static Logger getLogger(Class<?> x) {
15 return new Logger(); 15 return new Logger();
16 } 16 }
17 17