Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4331c23b authored by Alexandre Roux's avatar Alexandre Roux
Browse files

add logs

parent f96e94d1
Loading
Loading
Loading
Loading
+11 −1
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@
 */
package org.lineageos.updater.model;    

import android.util.Log;
public class UpdateBase implements UpdateBaseInfo {

    private String mName;
@@ -38,6 +39,15 @@ public class UpdateBase implements UpdateBaseInfo {
        mVersion = update.getVersion();
        mDisplayVersion = update.getDisplayVersion();
        mFileSize = update.getFileSize();
        Log.d("updaterdebug","mName "+mName);
        Log.d("updaterdebug","mDownloadUrl "+mDownloadUrl);
        Log.d("updaterdebug","mDownloadId "+mDownloadId);
        Log.d("updaterdebug","mType "+mType);
        Log.d("updaterdebug","mVersion "+mVersion);
        Log.d("updaterdebug","mDisplayVersion "+mDisplayVersion);
        Log.d("updaterdebug","mFileSize "+mFileSize);


    }

    @Override