in reply to File locking with semaphores
Your module defines a subroutine with the same name as a core function, which causes ambiguity. To get rid of the error you need to do what the message tells, you call CORE::open() instead of just open() so that perl doesn't have to guess if you mean CORE::open() or Logger::Simple::open().
|
|---|