Merge "Moving logging include"

This commit is contained in:
Daniel Zheng 2023-04-18 16:26:01 +00:00 committed by Gerrit Code Review
commit 729c159744
2 changed files with 5 additions and 3 deletions

View file

@ -33,7 +33,6 @@
#include <vector>
#include <android-base/endian.h>
#include <android-base/logging.h>
#include <android-base/stringprintf.h>
#include <android-base/unique_fd.h>
#include <bootimg.h>

View file

@ -14,13 +14,16 @@
// limitations under the License.
//
#include "task.h"
#include <iostream>
#include <android-base/logging.h>
#include <android-base/parseint.h>
#include "fastboot.h"
#include "filesystem.h"
#include "super_flash_helper.h"
#include <android-base/parseint.h>
using namespace std::string_literals;
FlashTask::FlashTask(const std::string& _slot, const std::string& _pname, const std::string& _fname,
const bool apply_vbmeta)