IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 24365


Ignore:
Timestamp:
Jun 10, 2009, 10:33:25 AM (17 years ago)
Author:
jhoblitt
Message:

do not log xattr does not exist messages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Nebulous-Server/lib/Nebulous/Server.pm

    r24363 r24365  
    11881188        $value = $row->{ 'value' };
    11891189    };
    1190     $log->logdie("database error: $@") if $@;
     1190    if ($@) {
     1191        if ($@ =~ /user\..*? does not exist/) {
     1192            # do not log xattr does not exist messages
     1193            die $@;
     1194        }
     1195        $log->logdie("database error: $@") if $@;
     1196    }
    11911197
    11921198    $log->debug("leaving");
Note: See TracChangeset for help on using the changeset viewer.