ultimatepp/uppsrc/ide/Android/LogCat.cpp
cxl 597466fea8 uppsrc: NAMESPACE_UPP / END_UPP_NAMESPACE removed
git-svn-id: svn://ultimatepp.org/upp/trunk@10186 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-08-26 17:15:30 +00:00

29 lines
381 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);
}
}