lottieloader: file path for debug info.

Change-Id: I551ef127032ac2a2dda36bb14b0bd5ffa2f5762e
This commit is contained in:
Hermet Park
2018-07-12 21:43:39 +09:00
committed by subhransu mohanty
parent 90270aa5af
commit ea434398c7

View File

@@ -4,6 +4,8 @@
#include<fstream>
#include<unordered_map>
using namespace std;
class LottieFileCache
{
public:
@@ -62,7 +64,7 @@ bool LottieLoader::load(std::string &path)
f.open(path);
if (!f.is_open()) {
printf("failed to open \n");
cout << "failed to open file = " << path.c_str() << endl;
return false;
} else {
std::stringstream buf;