ultimatepp/uppsrc/ide/Android/LogCat.cpp
klugier 9f6e0fcf5b .android-builder code refactoring and starting developing LogCat infrastructure
git-svn-id: svn://ultimatepp.org/upp/trunk@8714 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2015-07-20 20:31:45 +00:00

29 lines
396 B
C++

#include "Executables.h"
NAMESPACE_UPP
LogCat::LogCat()
{
}
LogCat::~LogCat()
{
}
String LogCat::MakeCmdByTag(const String& packageName) const
{
String cmd;
cmd << "logcat " << packageName << ":I" << " *:S";
return cmd;
}
String LogCat::MakeCmdByTag(const Adb& adb, const String& packageName) const
{
return adb.MakeCmd() + " " + MakeCmdByTag(packageName);
}
END_UPP_NAMESPACE