file-location: common functions that show file location information
Common debugging/error/exception functions that give file location information
$(err "OH NO!") main:Main main.hs:16:1 OH NO!
Notice how it displays package:module file:line:character
It exposes the functions err (error), undef (undefined), and trc (Debug.Trace.trace). All of these behave the same as their normal counterpart but also spit out a location.
Here is my favorite helper, debug, which is like trace but just show the value.
debug [1,2,3] DEBUG: [1,2,3] [1,2,3]
And The Template Haskell version.
$(dbg) [1,2,3] DEBUG main:Main main.hs:1:3 [1,2,3] [1,2,3]
Also there is a version of thrwIO that gives location information
($(thrwIO) $ AException) catch
e -> putStrLn ("Caught " ++ show (e :: AException))
Caught AException "main:Main test/main.hs:25:6"
See module for a listing of all the functions with short descriptions, and the homepage for some more examples https://github.com/gregwebs/ErrorLocation.hs
Modules
- Control
- Exception
- Control.Exception.FileLocation
- Exception
- Debug
- Debug.FileLocation
- Debug.Util
- FileLocation
- FileLocation.LocationString
Downloads
- file-location-0.4.5.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
Versions [RSS] | 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.3.0, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5, 0.4.5.1, 0.4.5.2, 0.4.5.3, 0.4.6, 0.4.7, 0.4.7.1, 0.4.8, 0.4.9, 0.4.9.1 |
---|---|
Dependencies | base (>=4 && <5), containers, template-haskell, transformers (>=0.2 && <0.4) [details] |
License | BSD-3-Clause |
Author | Greg Weber |
Maintainer | greg@gregweber.info |
Category | Development |
Home page | https://github.com/gregwebs/FileLocation.hs |
Source repo | head: git clone https://github.com/gregwebs/FileLocation.hs |
Uploaded | by GregWeber at 2012-10-17T16:20:13Z |
Distributions | Debian:0.4.9.1 |
Reverse Dependencies | 3 direct, 0 indirect [details] |
Downloads | 19052 total (66 in the last 30 days) |
Rating | (no votes yet) [estimated by Bayesian average] |
Your Rating | |
Status | Docs not available [build log] All reported builds failed as of 2016-12-23 [all 7 reports] |