Revision: 118
Author: matt
Date: 2006-08-24 00:05:52 +0000 (Thu, 24 Aug 2006)
Log Message:
-----------
Remove annoying debugging as it turns fast_mime_map into slow_mime_map :-)
Modified Paths:
--------------
trunk/plugins/fast_mime_map
Modified: trunk/plugins/fast_mime_map
===================================================================
--- trunk/plugins/fast_mime_map 2006-08-24 00:05:25 UTC (rev 117)
+++ trunk/plugins/fast_mime_map 2006-08-24 00:05:52 UTC (rev 118)
@@ -108,13 +108,11 @@
my $custom_map = $self->mime_map;
$filename =~ s/.*\///;
- $self->log(LOGDEBUG, "mapping $filename");
my @parts = split(/\./, $filename);
my $uno = 0;
while (@parts) {
my $name = join('.', @parts);
$name = ".$name" if ($uno++);
- $self->log(LOGDEBUG, "looking for mapping for: $name");
if (exists($custom_map->{$name})) {
$hd->mime_type($custom_map->{$name});
return OK;