Moving logging include

Header file shouldn't have include of logging

Test: tested compilation
Change-Id: I02cccb66b6ee5811e5d4f2b9b72508fee640e828
diff --git a/fastboot/task.cpp b/fastboot/task.cpp
index de48a16..d43fd80 100644
--- a/fastboot/task.cpp
+++ b/fastboot/task.cpp
@@ -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)