X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=blobdiff_plain;f=SimpleServer.xs;h=579ff91b3b71744c0673babf4f1ce475457790bf;hb=b88f2f7ab4c8c08d1a4552c05b52264b7b3e5ee4;hp=44384f717de18214cf01eec5adf6b357477432cc;hpb=a7033446d8ca83a1ac658e069b9d923d55c3d53d;p=simpleserver-moved-to-github.git diff --git a/SimpleServer.xs b/SimpleServer.xs index 44384f7..579ff91 100644 --- a/SimpleServer.xs +++ b/SimpleServer.xs @@ -1,5 +1,5 @@ /* - * $Id: SimpleServer.xs,v 1.34 2004-09-03 13:27:19 mike Exp $ + * $Id: SimpleServer.xs,v 1.35 2005-11-09 09:35:47 adam Exp $ * ---------------------------------------------------------------------- * * Copyright (c) 2000-2004, Index Data. @@ -1441,3 +1441,11 @@ ScanPartial() RETVAL +void +yazlog(arg) + SV *arg + CODE: + STRLEN len; + char *ptr; + ptr = SvPV(arg, len); + yaz_log(YLOG_LOG, "%.*s", len, ptr);