Android: Added missing space in three log messages.

Also fixed a typo and changed tag string to constant.
Philipp Wiesemann 2015-05-31 19:23:16 +02:00
parent 551fbf7bea
commit dbfd4fdd22
1 changed files with 3 additions and 3 deletions

View File

@ -180,7 +180,7 @@ public class SDLActivity extends Activity {
if (intent != null && intent.getData() != null) {
String filename = intent.getData().getPath();
if (filename != null) {
Log.v("SDL", "Get filename:" + filename);
Log.v(TAG, "Got filename: " + filename);
SDLActivity.onNativeDropFile(filename);
}
}