Fix hardcoded log tags

This commit is contained in:
Guillaume Beraudo 2011-03-11 15:54:43 +01:00
parent 4d803262e9
commit ebd65a01b7

View file

@ -34,11 +34,11 @@ public class AndroidVideoWindowImpl {
mSurface=holder.getSurface();
}
if (mListener!=null) mListener.onSurfaceReady(AndroidVideoWindowImpl.this);
Log.w("Linphone", "Video display surface changed");
Log.w(TAG, "Video display surface changed");
}
public void surfaceCreated(SurfaceHolder holder) {
Log.w("Linphone", "Video display surface created");
Log.w(TAG, "Video display surface created");
}
public void surfaceDestroyed(SurfaceHolder holder) {
@ -48,7 +48,7 @@ public class AndroidVideoWindowImpl {
}
if (mListener!=null)
mListener.onSurfaceDestroyed(AndroidVideoWindowImpl.this);
Log.d("Linphone", "Video display surface destroyed");
Log.d(TAG, "Video display surface destroyed");
}
});
}