diff --git a/web/ui.js b/web/ui.js
index 624ea32..a1b018b 100644
--- a/web/ui.js
+++ b/web/ui.js
@@ -132,6 +132,12 @@ function ui_load_list(res) {
   // clear the table
   table.data.data = [];
 
+  // there is no file
+  if (res.length === 1 && res[0][1] === '0') {
+    toastr.warning('저장된 로그 파일 없음');
+    return;
+  }
+
   res.forEach(x => {
     let resp = x[0];
     let size = x[1];