summaryrefslogtreecommitdiffstats
path: root/partitionmanager.cpp
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2015-01-22 04:51:20 +0100
committerDees Troy <dees_troy@teamw.in>2015-01-22 17:57:29 +0100
commitd9ff3c5dd03234c677cbf50e31e2195dfc6ebeeb (patch)
treef453ac5ceddd7775a192fd2485693e7f2aca3b9e /partitionmanager.cpp
parentMerge "Include libpcre if present" into android-5.0 (diff)
downloadandroid_bootable_recovery-d9ff3c5dd03234c677cbf50e31e2195dfc6ebeeb.tar
android_bootable_recovery-d9ff3c5dd03234c677cbf50e31e2195dfc6ebeeb.tar.gz
android_bootable_recovery-d9ff3c5dd03234c677cbf50e31e2195dfc6ebeeb.tar.bz2
android_bootable_recovery-d9ff3c5dd03234c677cbf50e31e2195dfc6ebeeb.tar.lz
android_bootable_recovery-d9ff3c5dd03234c677cbf50e31e2195dfc6ebeeb.tar.xz
android_bootable_recovery-d9ff3c5dd03234c677cbf50e31e2195dfc6ebeeb.tar.zst
android_bootable_recovery-d9ff3c5dd03234c677cbf50e31e2195dfc6ebeeb.zip
Diffstat (limited to '')
-rw-r--r--partitionmanager.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/partitionmanager.cpp b/partitionmanager.cpp
index 09ae5d2be..23632d28f 100644
--- a/partitionmanager.cpp
+++ b/partitionmanager.cpp
@@ -2028,7 +2028,7 @@ bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_t
return false; // MTP is disabled
if (mtp_write_fd < 0) {
- LOGERR("MTP: mtp_write_fd is not set\n");
+ LOGINFO("MTP: mtp_write_fd is not set\n");
return false;
}
@@ -2040,7 +2040,7 @@ bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_t
LOGINFO("sending message to remove %i\n", Part->MTP_Storage_ID);
mtp_message.storage_id = Part->MTP_Storage_ID;
if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
- LOGERR("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
+ LOGINFO("error sending message to remove storage %i\n", Part->MTP_Storage_ID);
return false;
} else {
LOGINFO("Message sent, remove storage ID: %i\n", Part->MTP_Storage_ID);
@@ -2054,7 +2054,7 @@ bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_t
mtp_message.maxFileSize = Part->Get_Max_FileSize();
LOGINFO("sending message to add %i '%s'\n", Part->MTP_Storage_ID, mtp_message.path);
if (write(mtp_write_fd, &mtp_message, sizeof(mtp_message)) <= 0) {
- LOGERR("error sending message to add storage %i\n", Part->MTP_Storage_ID);
+ LOGINFO("error sending message to add storage %i\n", Part->MTP_Storage_ID);
return false;
} else {
LOGINFO("Message sent, add storage ID: %i\n", Part->MTP_Storage_ID);
@@ -2066,7 +2066,7 @@ bool TWPartitionManager::Add_Remove_MTP_Storage(TWPartition* Part, int message_t
} else {
// This hopefully never happens as the error handling should
// occur in the calling function.
- LOGERR("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
+ LOGINFO("TWPartitionManager::Add_Remove_MTP_Storage NULL partition given\n");
}
return true;
#else
@@ -2082,7 +2082,7 @@ bool TWPartitionManager::Add_MTP_Storage(string Mount_Point) {
if (Part) {
return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
} else {
- LOGERR("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
+ LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
}
#endif
return false;
@@ -2094,7 +2094,7 @@ bool TWPartitionManager::Add_MTP_Storage(unsigned int Storage_ID) {
if (Part) {
return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_ADD_STORAGE);
} else {
- LOGERR("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
+ LOGINFO("TWFunc::Add_MTP_Storage unable to locate partition for %i\n", Storage_ID);
}
#endif
return false;
@@ -2106,7 +2106,7 @@ bool TWPartitionManager::Remove_MTP_Storage(string Mount_Point) {
if (Part) {
return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
} else {
- LOGERR("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
+ LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for '%s'\n", Mount_Point.c_str());
}
#endif
return false;
@@ -2118,7 +2118,7 @@ bool TWPartitionManager::Remove_MTP_Storage(unsigned int Storage_ID) {
if (Part) {
return PartitionManager.Add_Remove_MTP_Storage(Part, MTP_MESSAGE_REMOVE_STORAGE);
} else {
- LOGERR("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
+ LOGINFO("TWFunc::Remove_MTP_Storage unable to locate partition for %i\n", Storage_ID);
}
#endif
return false;