sync up logcat tags with the class names

This commit is contained in:
Hans-Christoph Steiner 2015-09-16 12:44:17 +02:00
parent d37b473e10
commit c8b64281c2
4 changed files with 4 additions and 3 deletions

View File

@ -7,6 +7,7 @@ import org.fdroid.fdroid.R;
import org.fdroid.fdroid.localrepo.type.BluetoothSwap;
public class BluetoothPeer implements Peer {
private static final String TAG = "BluetoothPeer";
private BluetoothDevice device;

View File

@ -14,7 +14,7 @@ import org.fdroid.fdroid.net.bluetooth.BluetoothServer;
public class BluetoothSwap extends SwapType {
private static final String TAG = "BluetoothBroadcastType";
private static final String TAG = "BluetoothSwap";
public final static String BLUETOOTH_NAME_TAG = "FDroid:";
private static BluetoothSwap mInstance = null;

View File

@ -20,7 +20,7 @@ import javax.jmdns.ServiceInfo;
*/
public class BonjourBroadcast extends SwapType {
private static final String TAG = "BonjourSwapService";
private static final String TAG = "BonjourBroadcast";
private JmDNS jmdns;
private ServiceInfo pairService;

View File

@ -21,7 +21,7 @@ import java.util.Random;
public class WifiSwap extends SwapType {
private static final String TAG = "WebServerType";
private static final String TAG = "WifiSwap";
private Handler webServerThreadHandler = null;
private LocalHTTPD localHttpd;