I've got pure and simple Androiod GPS LocationManager with NmeaListener added to it. In body of onNmeaReceived() method I have simple 
Log.d() statement. When i tell it to log simple 
String ("Nmea receied" or something) - it works ok. 
But when i add received nmea string to log body - Log.d simply not showing. But the most weird part - in the debugger i can see nmea string ("GPRMS and other NMEA 0183 stuff). What's wrong with Log.d in this case?
Problem Log.d looks like that:
@Override
public void onNmeaReceived(long timestamp, String nmea) {
    Log.d("Log", "Nmea received " + nmea)
}