mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-04-06 18:00:24 +08:00
add some debug info about packet contents
This commit is contained in:
parent
0fa9dc98eb
commit
75adeae78b
@ -344,7 +344,7 @@ ocdodsrc_read(char* basename, char* path)
|
||||
strncat(line,"=1",2);
|
||||
value = strchr(line,'=');
|
||||
}
|
||||
if(value == null) continue;
|
||||
if(value == NULL) continue;
|
||||
*value = '\0';
|
||||
value++;
|
||||
strncpy(ocdodsrc->triples[ocdodsrc->ntriples].key,TRIM(key),strlen(key));
|
||||
|
@ -121,8 +121,13 @@ readpacket(OCstate* state, OCURI* url,OCbytes* packet,OCdxd dxd,long* lastmodifi
|
||||
}
|
||||
free(fetchurl);
|
||||
#ifdef OCDEBUG
|
||||
{
|
||||
fprintf(stderr,"readpacket: packet.size=%lu\n",
|
||||
(unsigned long)ocbyteslength(packet));
|
||||
int count = ocbyteslength(packet);
|
||||
if(count > 20) count = 20;
|
||||
fprintf(stderr,"packet[0..20]=|%20s|",ocbytescontents(packet));
|
||||
}
|
||||
#endif
|
||||
return OCTHROW(stat);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user