[DEV] corect print in test software in release
This commit is contained in:
parent
b4e84394e4
commit
723c092756
@ -378,7 +378,7 @@ int main(int _argc, const char *_argv[]) {
|
|||||||
APPL_PRINT("== Clear data base: ");
|
APPL_PRINT("== Clear data base: ");
|
||||||
APPL_PRINT("============================================");
|
APPL_PRINT("============================================");
|
||||||
// TODO : Do it :
|
// TODO : Do it :
|
||||||
APPL_INFO("NEED to add check in cmd line to execute it ...");
|
APPL_ERROR("NEED to add check in cmd line to execute it ...");
|
||||||
return -1;
|
return -1;
|
||||||
uint32_t count = remoteServiceVideo.mediaIdCount().wait().get();
|
uint32_t count = remoteServiceVideo.mediaIdCount().wait().get();
|
||||||
APPL_DEBUG("have " << count << " medias");
|
APPL_DEBUG("have " << count << " medias");
|
||||||
@ -388,7 +388,7 @@ int main(int _argc, const char *_argv[]) {
|
|||||||
std::vector<uint32_t> list = remoteServiceVideo.mediaIdGet(iii,tmpMax).wait().get();
|
std::vector<uint32_t> list = remoteServiceVideo.mediaIdGet(iii,tmpMax).wait().get();
|
||||||
zeus::FutureGroup groupWait;
|
zeus::FutureGroup groupWait;
|
||||||
for (auto& it : list) {
|
for (auto& it : list) {
|
||||||
APPL_INFO("remove ELEMENT : " << it);
|
APPL_PRINT("remove ELEMENT : " << it);
|
||||||
groupWait.add(remoteServiceVideo.mediaRemove(it));
|
groupWait.add(remoteServiceVideo.mediaRemove(it));
|
||||||
}
|
}
|
||||||
groupWait.waitFor(echrono::seconds(2000));
|
groupWait.waitFor(echrono::seconds(2000));
|
||||||
@ -422,7 +422,7 @@ int main(int _argc, const char *_argv[]) {
|
|||||||
outputDesc += "e" + episode + "-";
|
outputDesc += "e" + episode + "-";
|
||||||
}
|
}
|
||||||
outputDesc += name;
|
outputDesc += name;
|
||||||
APPL_INFO("[" << it << "] " << outputDesc);
|
APPL_PRINT("[" << it << "] " << outputDesc);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
APPL_PRINT("============================================");
|
APPL_PRINT("============================================");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user