diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2012-01-25 18:05:56 -0500 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2012-01-25 18:05:56 -0500 |
commit | dd57bfdee98b5d0f7d796913581c28cbef956266 (patch) | |
tree | 674cf34bcc4bdeb1cb2196f1eb79c359ba0d6def /GradeBook_lib.tcl | |
parent | 3e2dc91ae86165684597827eec907435c89da190 (diff) | |
download | GradeBook-dd57bfdee98b5d0f7d796913581c28cbef956266.tar.gz GradeBook-dd57bfdee98b5d0f7d796913581c28cbef956266.zip |
some log entry moved from critical to info level
Diffstat (limited to 'GradeBook_lib.tcl')
-rwxr-xr-x | GradeBook_lib.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/GradeBook_lib.tcl b/GradeBook_lib.tcl index 10ee08c..9a622d6 100755 --- a/GradeBook_lib.tcl +++ b/GradeBook_lib.tcl @@ -114,7 +114,7 @@ proc getGradingWeights { } { proc isCalculateTotalForCategorySet { category } { if {![existsColumnWithRowvalueInTable GradesCategoryTable CategoryName $category ]} { - dbg "Category: $category does not exists in the GradesCategoryTable, setting CalculateTotal to false" msg_level_warning + dbg "Category: $category does not exists in the GradesCategoryTable, setting CalculateTotal to false" msg_level_info return false } set flag [SelectColvalueFromTable GradesCategoryTable NeedsTotal CategoryName $category] @@ -227,7 +227,7 @@ proc calculteWeightedTotals { } { # no weighted total column created for categories which do no have at least 2 columns # check if Weighted Category Column exists if { $CategoryWeightedTolalName ni $all_column_names } { - dbg "Column $CategoryWeightedTolalName does not exist, will create it now" msg_level_critical + dbg "Column $CategoryWeightedTolalName does not exist, will create it now" msg_level_info AddColumnNonWeb $CategoryWeightedTolalName weighted_column 0 } } else { @@ -260,7 +260,7 @@ proc calculteWeightedTotals { } { # now calculation of weighted grand total set grand_total_col_name "Grand Total" if { $grand_total_col_name ni $all_column_names } { - dbg "Column $grand_total_col_name does not exist, will create it now" msg_level_critical + dbg "Column $grand_total_col_name does not exist, will create it now" msg_level_info AddColumnNonWeb $grand_total_col_name weighted_column 0 } foreach student $students_list { |