Skip to content
Snippets Groups Projects
Commit e6fe43f9 authored by Calvin Walton's avatar Calvin Walton
Browse files

Fix a logger method call in presentation script

This shouldn't normally be hit... but if it ever is, the processing will
fail with an error, since the Logger class doesn't have a method named
'warning'.
parent 49bf86d5
No related branches found
No related tags found
No related merge requests found
......@@ -84,7 +84,7 @@ if not FileTest.directory?(target_dir)
pres_pdf = "#{pres_dir}/#{pres}"
end
if !File.exists?(pres_pdf)
BigBlueButton.logger.warning("Could not find pdf file for presentation #{pres}")
BigBlueButton.logger.warn("Could not find pdf file for presentation #{pres}")
end
1.upto(num_pages) do |page|
BigBlueButton::Presentation.extract_png_page_from_pdf(
......
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