From webmaster at cosmicperl.com Fri May 2 12:34:55 2008 From: webmaster at cosmicperl.com (Lyle - CosmicPerl.com Support) Date: Fri, 02 May 2008 20:34:55 +0100 Subject: Shameless plug of Bristol & Bath Perl Mongers Message-ID: <481B6CDF.2030100@cosmicperl.com> Hi All, Just to mention that the new Bristol and Bath perl mongers group is up and running. If you know any perl people in the area please let them know. Thank you. http://perl.bristolbath.org/ Lyle P.S. http://thamesvalley.pm.org/ isn't working. Is the list dead? From Tony.Edwardson at commerzbank.com Thu May 8 02:50:04 2008 From: Tony.Edwardson at commerzbank.com (Edwardson, Tony) Date: Thu, 8 May 2008 11:50:04 +0200 Subject: Log::Log4perl sending DEBUG and above to a file and WARN and above to the screen Message-ID: Hi I'm working with some code which uses Log::Log4perl with a config like this :- my %settings = ( 'log4perl.rootLogger' => 'DEBUG, LOGFILE', 'log4perl.category.rrdtool' => 'WARN, LOGFILE', 'log4perl.category.RRDTool.OO' => 'WARN, LOGFILE', 'log4perl.appender.LOGFILE' => 'Log::Log4perl::Appender::File', 'log4perl.appender.LOGFILE.filename' => $filename, 'log4perl.appender.LOGFILE.layout' => 'PatternLayout', 'log4perl.appender.LOGFILE.layout.ConversionPattern' => '[%d] %-20F{1} %-5p - %-6P - %m%n', ); Log::Log4perl->init( \%settings ); Which logs all output to a log file and nothing goes to the screen. The trouble with this is that when an error happens, it only gets written to the log file and nothing goes to the screen so unless you check the response code and/or the log file you don't know when something failed. Anyone know of a way to get the rootLogger to additionally send errors to STDERR so I get to see them without introducing new categories ? Regards/Mit freundlichen Gr??en, Tony Edwardson Commerzbank AG Commerzbank Corporates & Markets ZIT-A CMA / Murex IT Team London 60 Gracechurch Street London EC3V 0HR United Kingdom +44-207-469-3628 tony.edwardson at commerzbank.com -- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/miltonkeynes-pm/attachments/20080508/1a21461a/attachment.html From tom at eborcom.com Thu May 8 04:22:25 2008 From: tom at eborcom.com (Tom Hukins) Date: Thu, 8 May 2008 12:22:25 +0100 Subject: Log::Log4perl sending DEBUG and above to a file and WARN and above to the screen In-Reply-To: References: Message-ID: <20080508112225.GA77040@eborcom.com> On Thu, May 08, 2008 at 11:50:04AM +0200, Edwardson, Tony wrote: > Anyone know of a way to get the rootLogger to additionally send > errors to STDERR so I get to see them without introducing new > categories ? Why do you want to use the rootLogger? I would create an additional logger that ignores anything below the ERROR level and uses the Screen appender to log to STDERR. Tom From Tony.Edwardson at commerzbank.com Thu May 8 05:43:44 2008 From: Tony.Edwardson at commerzbank.com (Edwardson, Tony) Date: Thu, 8 May 2008 14:43:44 +0200 Subject: Log::Log4perl sending DEBUG and above to a file and WARN andabove to the screen In-Reply-To: <20080508112225.GA77040@eborcom.com> References: <20080508112225.GA77040@eborcom.com> Message-ID: I tried that but couldn't get it to work - Robbie has solved my problem for me Add a new appender to Screen and set the threshold for the appender to WARN Cheers Tony -- -----Original Message----- From: miltonkeynes-pm-bounces+tony.edwardson=commerzbank.com at pm.org [mailto:miltonkeynes-pm-bounces+tony.edwardson=commerzbank.com at pm.org] On Behalf Of Tom Hukins Sent: Thursday, May 08, 2008 12:22 PM To: miltonkeynes-pm at pm.org Subject: Re: Log::Log4perl sending DEBUG and above to a file and WARN andabove to the screen On Thu, May 08, 2008 at 11:50:04AM +0200, Edwardson, Tony wrote: > Anyone know of a way to get the rootLogger to additionally send > errors to STDERR so I get to see them without introducing new > categories ? Why do you want to use the rootLogger? I would create an additional logger that ignores anything below the ERROR level and uses the Screen appender to log to STDERR. Tom _______________________________________________ MiltonKeynes-pm mailing list MiltonKeynes-pm at pm.org http://mail.pm.org/mailman/listinfo/miltonkeynes-pm From tom at eborcom.com Thu May 8 07:42:50 2008 From: tom at eborcom.com (Tom Hukins) Date: Thu, 8 May 2008 15:42:50 +0100 Subject: Log::Log4perl sending DEBUG and above to a file and WARN andabove to the screen In-Reply-To: References: <20080508112225.GA77040@eborcom.com> Message-ID: <20080508144250.GA91360@eborcom.com> On Thu, May 08, 2008 at 02:43:44PM +0200, Edwardson, Tony wrote: > I tried that but couldn't get it to work Sorry, it seems I misread the configuration file where I've done this and replied too hastily. Blame it on the sunshine. Tom From Tony.Edwardson at commerzbank.com Thu May 8 07:49:41 2008 From: Tony.Edwardson at commerzbank.com (Edwardson, Tony) Date: Thu, 8 May 2008 16:49:41 +0200 Subject: Log::Log4perl sending DEBUG and above to a file and WARN andaboveto the screen In-Reply-To: <20080508144250.GA91360@eborcom.com> References: <20080508112225.GA77040@eborcom.com> <20080508144250.GA91360@eborcom.com> Message-ID: Is that what you are drinking ? Good stuff sunshine but watch the hangover ! -- -----Original Message----- From: miltonkeynes-pm-bounces+tony.edwardson=commerzbank.com at pm.org [mailto:miltonkeynes-pm-bounces+tony.edwardson=commerzbank.com at pm.org] On Behalf Of Tom Hukins Sent: Thursday, May 08, 2008 3:43 PM To: miltonkeynes-pm at pm.org Subject: Re: Log::Log4perl sending DEBUG and above to a file and WARN andaboveto the screen On Thu, May 08, 2008 at 02:43:44PM +0200, Edwardson, Tony wrote: > I tried that but couldn't get it to work Sorry, it seems I misread the configuration file where I've done this and replied too hastily. Blame it on the sunshine. Tom _______________________________________________ MiltonKeynes-pm mailing list MiltonKeynes-pm at pm.org http://mail.pm.org/mailman/listinfo/miltonkeynes-pm From pm at gavinwestwood.co.uk Thu May 8 07:58:07 2008 From: pm at gavinwestwood.co.uk (Gavin Westwood) Date: Thu, 08 May 2008 15:58:07 +0100 Subject: Log::Log4perl sending DEBUG and above to a file and WARN andaboveto the screen In-Reply-To: References: <20080508112225.GA77040@eborcom.com> <20080508144250.GA91360@eborcom.com> Message-ID: <482314FF.6090101@gavinwestwood.co.uk> On 08/05/08 15:49, Edwardson, Tony wrote: > Is that what you are drinking ? > Good stuff sunshine but watch the hangover ! I've heard you can sometimes get a burning sensation... :-p Gavin From dave at dave.org.uk Thu May 8 11:10:59 2008 From: dave at dave.org.uk (Dave Cross) Date: Thu, 08 May 2008 19:10:59 +0100 Subject: Log::Log4perl sending DEBUG and above to a file and WARN andabove to the screen In-Reply-To: <20080508144250.GA91360@eborcom.com> References: <20080508112225.GA77040@eborcom.com> <20080508144250.GA91360@eborcom.com> Message-ID: <48234233.2080104@dave.org.uk> Tom Hukins wrote: > Blame it on the sunshine. Blame it on the boogie. Dave... From robbiebow at gmail.com Thu May 8 09:47:06 2008 From: robbiebow at gmail.com (Robbie Bow) Date: Thu, 8 May 2008 17:47:06 +0100 Subject: Log::Log4perl sending DEBUG and above to a file and WARN andabove to the screen In-Reply-To: <20080508144250.GA91360@eborcom.com> References: <20080508112225.GA77040@eborcom.com> <20080508144250.GA91360@eborcom.com> Message-ID: <973296c20805080947p28ee6abfpd953d3739fac674e@mail.gmail.com> On Thu, May 8, 2008 at 3:42 PM, Tom Hukins wrote: > On Thu, May 08, 2008 at 02:43:44PM +0200, Edwardson, Tony wrote: >> I tried that but couldn't get it to work > > Sorry, it seems I misread the configuration file where I've done this > and replied too hastily. > > Blame it on the sunshine. > Anything but the boogey, right? From Tony.Edwardson at commerzbank.com Mon May 12 07:26:05 2008 From: Tony.Edwardson at commerzbank.com (Edwardson, Tony) Date: Mon, 12 May 2008 16:26:05 +0200 Subject: Coding Collaboration Initial Meeting Tomorrow Message-ID: Gentle reminder for those hardy souls who are planning to help with the Perl Testing collaboration, our initial meeting is tomorrow evening at my place from 8pm Here's a map http://maps.google.co.uk/maps?f=q&hl=en&geocode=&q=4+thorwold+Place,+loughton,+Milton+Keynes&sll=52.024772,-0.780201&sspn=0.011804,0.03931&ie=UTF8&ll=52.0253,-0.780072&spn=0.009005,0.038152&z=15&iwloc=addr Any probs, call me on 01908 241980/07712 100283 or visit the website http://79.99.43.16/mkpm Regards/Mit freundlichen Gr??en, Tony Edwardson Commerzbank AG Commerzbank Corporates & Markets ZIT-A CMA / Murex IT Team London 60 Gracechurch Street London EC3V 0HR United Kingdom +44-207-469-3628 tony.edwardson at commerzbank.com -- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/miltonkeynes-pm/attachments/20080512/7ab78384/attachment.html From Tony.Edwardson at commerzbank.com Thu May 15 00:26:29 2008 From: Tony.Edwardson at commerzbank.com (Edwardson, Tony) Date: Thu, 15 May 2008 09:26:29 +0200 Subject: Address change of the MKPM Coding Collaboratino Site Message-ID: Hi Guys So that our Subversion repository can reside on port 80, I've moved the web site onto port 8080 - so you can get to via http://79.99.43.16:8080/mkpm or http://mkperl.scrubhole.org:8080/mkpm Cheers Tony -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/miltonkeynes-pm/attachments/20080515/779584fd/attachment.html From Tony.Edwardson at commerzbank.com Mon May 19 04:22:45 2008 From: Tony.Edwardson at commerzbank.com (Edwardson, Tony) Date: Mon, 19 May 2008 13:22:45 +0200 Subject: Testing Collaboration Message-ID: Hi All Following a successful first meeting to discuss how to proceed with our testing fest, we decided to arrange a meeting on Sunday 8th June at my place in Loughton. Kick off at around 2pm and I may fire up the bbq weather permitting so you can your laptops covered with black marks ! Anyone else wanting to join in, get registered at http://79.99.43.16:8080/mkpm (or http://mkperl.scrubhole.org:8080/mkpm) Cheers Tony <> <> -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/miltonkeynes-pm/attachments/20080519/5d27e668/attachment.html -------------- next part -------------- A non-text attachment was scrubbed... Name: first-testing-workshop.vcs Type: application/octet-stream Size: 398 bytes Desc: first-testing-workshop.vcs Url : http://mail.pm.org/pipermail/miltonkeynes-pm/attachments/20080519/5d27e668/attachment.obj -------------- next part -------------- A non-text attachment was scrubbed... Name: first-testing-workshop.ics Type: application/octet-stream Size: 496 bytes Desc: first-testing-workshop.ics Url : http://mail.pm.org/pipermail/miltonkeynes-pm/attachments/20080519/5d27e668/attachment-0001.obj From peter at dragonstaff.com Tue May 20 12:36:28 2008 From: peter at dragonstaff.com (Peter Edwards) Date: Tue, 20 May 2008 20:36:28 +0100 Subject: Testing Collaboration In-Reply-To: References: Message-ID: <08c401c8bab0$df758310$6401a8c0@DRAGON1> Sunday June 8th looks good for me. Regards, Peter Dragonstaff Limited http://www.dragonstaff.com Business IT Consultancy _____ From: Edwardson, Tony [mailto:Tony.Edwardson at commerzbank.com] Sent: 19 May 2008 12:23 To: tom at eborcom.com; peter at dragonstaff.com; oliver.gorwits at oucs.ox.ac.uk; pm at gavinwestwood.co.uk; rod at norfor.net; andyfrommk at gmail.com; justifier.uk at googlemail.com Cc: miltonkeynes-pm at pm.org Subject: Testing Collaboration Hi All Following a successful first meeting to discuss how to proceed with our testing fest, we decided to arrange a meeting on Sunday 8th June at my place in Loughton. Kick off at around 2pm and I may fire up the bbq weather permitting so you can your laptops covered with black marks ! Anyone else wanting to join in, get registered at http://79.99.43.16:8080/mkpm (or http://mkperl.scrubhole.org:8080/mkpm) Cheers Tony <> <> -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/miltonkeynes-pm/attachments/20080520/3ab9f3aa/attachment.html From pm at gavinwestwood.co.uk Wed May 21 05:57:10 2008 From: pm at gavinwestwood.co.uk (Gavin Westwood) Date: Wed, 21 May 2008 13:57:10 +0100 Subject: [Fwd: O'Reilly invites you to Mashed 2008] Message-ID: <48341C26.8090700@gavinwestwood.co.uk> This may be of interest to some of you (Tom already mentioned on IRC, but as I got an official email I thought I'd pass it on): -------- Original Message -------- Subject: O'Reilly invites you to Mashed 2008 Date: Wed, 21 May 2008 12:08:34 +0100 From: Josette Garcia Organisation: O'Reilly Media To: The Organiser Please send to your members O'Reilly invites you to Mashed 2008 tickets now available and they are free! Mashed - it's Hack Day time again and this year the BBC have got a corker of a weekend planned. Arrive on the Saturday morning and listen to real people from the development world showing you how to build things and how to use the systems that will be available to you through-out the weekend - including a full broadcast TV station with the ability to build and hack your own interactive applications. - see http://backstage.bbc.co.uk/news/archives/2008/05/mashed_2008_tic.html The BBC kindly gave O'Reilly 100 tickets. So please book now on http://mashed08.eventbrite.com/ and make sure that you have a place at the weekend of the year. Date: Saturday, June 21, 2008 at 9:00 am To: Sunday, June 22, 2008 at 6:00 pm Venue: Alexandra Palace Alexandra Palace Way Wood Green London, London N22 7AY United Kingdom My colleague Craig Smith and myself will be there all weekend so please come and talk to us. See you there! If you can't make it send this invitation to a friend. Kindest regards Josette ### Josette Garcia PR/Marketing Manager O'Reilly UK Limited -------------- next part -------------- An HTML attachment was scrubbed... URL: http://mail.pm.org/pipermail/miltonkeynes-pm/attachments/20080521/ca34a2c3/attachment.html From pm at gavinwestwood.co.uk Wed May 21 09:42:58 2008 From: pm at gavinwestwood.co.uk (Gavin Westwood) Date: Wed, 21 May 2008 17:42:58 +0100 Subject: Meeting: Tuesday 27th May Message-ID: <48345112.5060908@gavinwestwood.co.uk> It's that time again! The MKLUG and Milton Keynes Perl Mongers social meet up will be at Wetherspoon's, near the railway station (not the one in the snow dome): http://miltonkeynes.openguides.org/?J.D_Wetherspoon%2C_Central_Milton_Keynes Starting from 8pm, and going on till the last people stumble off home, you could bring your laptop/other device if you wish (we have the wifi password). Hope to see you there (and that I'll remember to come this time!) Gavin From pm at gavinwestwood.co.uk Tue May 27 09:47:14 2008 From: pm at gavinwestwood.co.uk (Gavin Westwood) Date: Tue, 27 May 2008 17:47:14 +0100 Subject: Social Tonight Message-ID: <483C3B12.1010802@gavinwestwood.co.uk> Just a quick reminder about the social at Weatherspoons tonight - hope to see some of you there. Gavin From I.A.Cameron at open.ac.uk Tue May 27 18:05:47 2008 From: I.A.Cameron at open.ac.uk (Ian Cameron) Date: Wed, 28 May 2008 02:05:47 +0100 Subject: Delapre Abbey Beer Festival - Northampton (fwd) Message-ID: FYI. -- Cheers, Ian. ------- Forwarded Message Date: Wed, 28 May 2008 01:42:58 +0100 To: Cc: Subject: Delapre Abbey Beer Festival - Northampton For those who aren't on Facebook, it's the Northants CAMRA beer festival at Delapre Abbey in Northampton from May 29th - 31st. The 3rd Delapre Abbey Beer Festival (organised by Northants CAMRA branch) will be held at Delapre Abbey, Northampton, on 29th - 31st May 2008. * Over 150 Beers * Real Cider and Perry * Locally produced Wine * Quality food at all sessions * Open air event with beer marquee * Live bands o Friday from 9pm o Saturday from 1pm o Saturday Evening * Families welcome * Plenty of seating * 2 UKP refundable commemorative glass and programme Opening Times: * Thursday 5pm-11pm * Friday Noon-11pm * Saturday Noon-11pm 2 UKP admission after 7pm Friday and Saturday. Pay on entry (no advance tickets). Free to card-carrying CAMRA members. Trains up there on any day are fine, with services at least once an hour typically. Getting back is as follows: Thursday return: 22:47, 23:46 Friday return: 22:47, 23:46, 05:15 Saturday return: 22:42, 22:53, 23:35, 06:40 The times above are all departure times from Northampton Railway Station. The distance from Northampton Railway Station to the event is a little under 1.5 miles. Road directions for the Delapre Abbey site, and the address are: Delapre Abbey London Road Northampton United Kingdom NN4 8AW >From M1 - Leave the motorway at exit 15 and take the A45 East towards Town Centre. Leave the A45 dual-carriageway at the exit sign-posted for Town Centre and Ring Road (Oxford). At the roundabout take the 2nd exit. The entrance to delapre Abbey is on the right hand side at the bottom of the hill just before the Pelican crossing. Here are some useful links: Google map from station to event: http://maps.google.co.uk/maps?f=d&hl=en&geocode=&saddr=Northampton%20Railway%20Station&daddr=NN4%208AW&sll=52.225972,-0.889614&sspn=0.006348,0.014291&ie=UTF8&z=15 Delapre Abbey festival information: http://www.delapreabbey.org/page/page/3836932.htm Northants CAMRA festival information: http://www.northantscamra.org.uk/main.php?id=beerfestivals ------- End of Forwarded Message