Skip to content

Commit b619392

Browse files
committedNov 28, 2011
Remove debug code from the Event for logging.
1 parent 626011a commit b619392

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed
 

‎lib/WebGUI/Asset/Event.pm

-4
Original file line numberDiff line numberDiff line change
@@ -1805,11 +1805,9 @@ sub update {
18051805
if ($startHour > 23) {
18061806
$startHour = 0;
18071807
my $startDate = exists $properties->{startDate} ? $properties->{startDate} : $self->get('startDate');
1808-
$session->log->warn('startDate: '. $startDate);
18091808
my $startDt = WebGUI::DateTime->new($session, $startDate);
18101809
$startDt->add(days => 1);
18111810
$properties->{startDate} = $startDt->toMysqlDate;
1812-
$session->log->warn('startDate: '. $properties->{startDate});
18131811
$startSecond = '00' if ! $startSecond;
18141812
$properties->{startTime} = sprintf '%02d:%02d:%02d', $startHour, $startMinute, $startSecond;
18151813
}
@@ -1819,11 +1817,9 @@ sub update {
18191817
if ($endHour > 23) {
18201818
$endHour = 0;
18211819
my $endDate = exists $properties->{endDate} ? $properties->{endDate} : $self->get('endDate');
1822-
$session->log->warn('endDate: '. $endDate);
18231820
my $endDt = WebGUI::DateTime->new($session, $endDate);
18241821
$endDt->add(days => 1);
18251822
$properties->{endDate} = $endDt->toMysqlDate;
1826-
$session->log->warn('endDate: '. $properties->{endDate});
18271823
$endSecond = '00' if ! $endSecond;
18281824
$properties->{endTime} = sprintf '%02d:%02d:%02d', $endHour, $endMinute, $endSecond;
18291825
}

0 commit comments

Comments
 (0)
Please sign in to comment.