incremental
diff --git a/scripts/build_web_assets.py b/scripts/build_web_assets.py
index 264448e..0b82cbc 100755
--- a/scripts/build_web_assets.py
+++ b/scripts/build_web_assets.py
@@ -98,7 +98,6 @@
if re.search("partial-.*\\.html", relative_path):
sha1_path = get_sha1_path_from_relative(relative_path, sha1_list[relative_path])
- print("full_filepath" + full_filepath)
preload_string += (
"<script type=\"text/ng-template\" id=\"" + sha1_path + "\">\n" +
open(full_filepath, 'r').read() +
@@ -207,7 +206,7 @@
full_filepath)
extension = os.path.splitext(relative_path)[1]
- print("Including {:<40} size {:>7}".format(
+ print("Including {:<40} raw size {:>7}".format(
relative_path, len(file_content)))
if extension == ".html" or relative_path == "/":
@@ -319,6 +318,7 @@
relative_path_escaped=relative_path_escaped
)
)
+ print("{:<40} took {:<7} kbytes".format(relative_path_escaped, len(array_binary_text)/1024))
cpp_output.write("}\n}\n")
print("Total static file size: {}KB".format(int(total_payload_size/1024)))