Anybody help with this, please?

I created a wrapper package (say Mylog) around Log4perl and mirrored all the Log4perl functions in that package: debug, info, warn, error, etc.

To make the logging easy to use, I used Exporter to export all the Mylog functions (instead of having to call Mylog::debug, etc.). The problem, then, is with warn() - if I just call warn(), then the built-in warn will be called...

Is there any way to get around this, or should I just change the name of this function in Mylog? Or always use Mylog::func or even change the logging funcs to be mylog_debug, mylog_warn, etc. What's the best/correct approach?

#!/usr/bin/perl use strict; use warnings; use Mylog qw/mylog_init debug info warn error fatal logwarn logdie/; debug("just a test... - debug\n"); warn("just a test... - warn\n"); # I guess this will always call th +e built-in... info("just a test... - info\n");

Thanks


In reply to Log4perl & warn by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.