Modify animation in Iot profile for resolution 1280x720
[apps/native/boot-animation.git] / src / animation.c
index d9abd8b..17ce775 100755 (executable)
@@ -170,6 +170,7 @@ static char * __get_layout_file_name(int animation_type, int w, int h)
        ret = access(file_name, 0);
        if (ret != 0) {
                __E("There's no Image same with [%s], So set Default[720x1280] image", file_name);
+               __D("There's no Image same with [%s], So set Default[720x1280] image", file_name);
                if (animation_type == TYPE_OFF)
                        snprintf(file_name, sizeof(file_name), "%s", DEFAULT_OFF);
                else
@@ -178,6 +179,7 @@ static char * __get_layout_file_name(int animation_type, int w, int h)
                ret = access(file_name, 0);
                if (ret) {
                        __E("There's no Image file[%s] on target", file_name);
+                       __D("There's no Image file[%s] on target", file_name);
                        return NULL;
                }
        }