LoginSignup
18
3

More than 5 years have passed since last update.

Perl のエラーメッセージをちょっときれいにしてくれるツールを書いた

Posted at

手前味噌で恐縮ですが、
Perl のエラーメッセージをちょっときれいにするような
ppe というツールを書いてみました

名前は、Prettify Perl Error messages の頭文字からとりました
install は、cpanm App::PPE で出来ます

使い方

例1

こんなコードがあったとして

foo.pl
use strict;
use warnings;

my $str;
warn $str;

普通に実行した時、次のようなエラーメッセージが表示されますが
image.png

ppe に食わせてみると次のようになります
image.png

例2

同様にこんなコードがあったとして

bar.pl
use strict;
use warnings;

sub f {

次のような具合になります

image.png

image.png

フォーマットは、ファイル名:該当行: [タグ] (エラー分類) メッセージ にしています
エラー分類の詳しいことは、perldiag を参照ください

多少、見やすくなっているといいなーと思うのですが、
いかがでしょうか・・?

以上です!

18
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
3