Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

chunk!

by vnpandey (Scribe)
on Jul 11, 2000 at 17:24 UTC ( [id://21964]=perlquestion: print w/replies, xml ) Need Help??

vnpandey has asked for the wisdom of the Perl Monks concerning the following question:

Dear Monks, How does one interprets the warning/error messages from the number after chunk for ex. chunk 1162 indicates that use of uninitialized variable is there, so for all the messages is there some place from where one can know the error message just only from this chunk thing(index)?... thanks; V.N.Pandey

Replies are listed 'Best First'.
RE: chunk!
by autark (Friar) on Jul 11, 2000 at 17:52 UTC
    I assume you refer to messages like:
    Use of uninitialized value at ./foo.pl line 7, <BAR> chunk 198.
    This warning indicates that you used an uninitialized variable at line 7 in your script. The chunk refers to the last chunk just read from filehandle BAR. The chunk number depends on what kind of chunks you read in (default is that 1 chunk = 1 line). You can change what a chunk is by assigning the variable $/.

    The chunk part of the warning is meant to help you to find out where you were in the currently opened file when the warning occured.

    BAR does not have to be a file, but can also be a socket handle, directory handle etc. (in UNIX everything is a file :-) )

    So chunk doesn't say much about what kind of warning/error it is - you use the message for that.

    You can use diagnostics to get verbose help for your warning/error messages

    #!/usr/bin/perl -w use diagnostics; # Force a warning $foo = 1;
    Autark.
Re: chunk!
by Corion (Patriarch) on Jul 11, 2000 at 17:32 UTC

    The number behind the chunk #n means that the error occurred after data was read for the n-th time. So if your error dosen't occur with the first line of data you read in, you will know this from the chunk number (which might or might not coincide with the line number of the file you are reading in).

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://21964]
Approved by root
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (5)
As of 2024-04-19 09:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found