Skip to content
Snippets Groups Projects
Commit 2fe4f555 authored by Richard Alam's avatar Richard Alam
Browse files

- log meetingId, presId, and page num of slide that's failing to load

parent 196d58e9
No related branches found
No related tags found
No related merge requests found
......@@ -163,7 +163,8 @@ class PresentationController {
response.outputStream << bytes;
}
} catch (IOException e) {
log.error("Error reading file.\n" + e.getMessage());
log.error("Failed to read SWF file. meetingId=" + conf + ",presId=" + presentationName + ",page=" + slide);
log.error("Error reading SWF file.\n" + e.getMessage());
}
return null;
......@@ -185,7 +186,8 @@ class PresentationController {
response.outputStream << bytes;
}
} catch (IOException e) {
log.error("Error reading file.\n" + e.getMessage());
log.error("Failed to read SVG file. meetingId=" + conf + ",presId=" + presentationName + ",page=" + slide);
log.error("Error reading SVG file.\n" + e.getMessage());
}
return null;
......@@ -208,7 +210,8 @@ class PresentationController {
response.outputStream << bytes;
}
} catch (IOException e) {
log.error("Error reading file.\n" + e.getMessage());
log.error("Failed to read thumb file. meetingId=" + conf + ",presId=" + presentationName + ",page=" + thumb);
log.error("Error reading thunb file.\n" + e.getMessage());
}
return null;
......@@ -235,7 +238,8 @@ class PresentationController {
log.debug "$pres does not exist."
}
} catch (IOException e) {
log.error("Error reading file.\n" + e.getMessage());
log.error("Failed to read text file. meetingId=" + conf + ",presId=" + presentationName + ",page=" + textfile);
log.error("Error reading text file.\n" + e.getMessage());
}
return null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment