projects
/
platform
/
core
/
uifw
/
lottie-player.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
90270aa
)
lottieloader: file path for debug info.
author
Hermet Park
<hermetpark@gmail.com>
Thu, 12 Jul 2018 12:43:39 +0000
(21:43 +0900)
committer
subhransu mohanty
<sub.mohanty@samsung.com>
Mon, 16 Jul 2018 03:07:42 +0000
(12:07 +0900)
Change-Id: I551ef127032ac2a2dda36bb14b0bd5ffa2f5762e
src/lottie/lottieloader.cpp
patch
|
blob
|
history
diff --git
a/src/lottie/lottieloader.cpp
b/src/lottie/lottieloader.cpp
index e91849039c63eb88809bc67ef61979fa907fade8..3d42195d4cedaf0bf11931a83f7e1803a35908ab 100644
(file)
--- a/
src/lottie/lottieloader.cpp
+++ b/
src/lottie/lottieloader.cpp
@@
-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;