2024/12/25

Newest at the top

2024-12-25 15:05:54 +0100gentauro(~gentauro@user/gentauro) gentauro
2024-12-25 15:05:10 +0100meritamen(~meritamen@user/meritamen) meritamen
2024-12-25 15:03:35 +0100meritamen(~meritamen@user/meritamen) (Remote host closed the connection)
2024-12-25 15:01:34 +0100gentauro(~gentauro@user/gentauro) (Read error: Connection reset by peer)
2024-12-25 14:58:02 +0100merijn(~merijn@128-137-045-062.dynamic.caiway.nl) (Ping timeout: 252 seconds)
2024-12-25 14:57:35 +0100 <hellwolf> can you turn it off by environment variable or RTS options?
2024-12-25 14:56:45 +0100 <int-e> Debug.Trace goes a long way.
2024-12-25 14:56:21 +0100 <hellwolf> fwiw, I currently do Text.IO and print out result as much it can, and it stops at where it crashed. That's actually always helpful... good old printf debugging, I guess.
2024-12-25 14:56:16 +0100int-eshrugs
2024-12-25 14:56:09 +0100 <int-e> so that tells you where f was called from.
2024-12-25 14:55:55 +0100 <yahb2> [("f",SrcLoc {srcLocPackage = "interactive", srcLocModule = "Ghci7", srcLocFile = "<interactive>", srcLocStartLine = 41, srcLocStartCol = 81, srcLocEndLine = 41, srcLocEndCol = 82})]
2024-12-25 14:55:55 +0100 <int-e> % let f :: HasCallStack => String; f = show (getCallStack ?callStack) in putStrLn f
2024-12-25 14:55:51 +0100 <yahb2> <no output>
2024-12-25 14:55:51 +0100 <int-e> % :set -XImplicitParams
2024-12-25 14:55:30 +0100 <yahb2> <interactive>:37:57: error: [GHC-88464] ; Variable not in scope: ; (?) :: (CallStack -> [([Char], SrcLoc)]) -> CallStack -> a0
2024-12-25 14:55:30 +0100 <int-e> % let f :: HasCallStack => String; f = show (getCallStack ?callStack) in putStrLn f
2024-12-25 14:55:09 +0100 <yahb2> <no output>
2024-12-25 14:55:09 +0100 <int-e> % import GHC.Stack
2024-12-25 14:55:00 +0100 <yahb2> <no location info>: error: [GHC-35235] ; Could not find module ‘GHC.CallStack’. ; It is not a module in the current program, or in any known package.
2024-12-25 14:54:59 +0100 <int-e> % import GHC.CallStack
2024-12-25 14:53:26 +0100merijn(~merijn@128-137-045-062.dynamic.caiway.nl) merijn
2024-12-25 14:52:45 +0100Nixkernal(~Nixkernal@90.74.198.178.dynamic.cust.swisscom.net) Nixkernal
2024-12-25 14:51:16 +0100 <hellwolf> what should I use instead, I have "gen_assert_msg" helper I use in a few places, it uses "error" inside. but it definitely does not produce the stack trace. I am not sure I should pursue such a stack trace, I am all ears on any more sensible debugging strategy.
2024-12-25 14:49:50 +0100 <int-e> But AIUI this can be a good tool to answer the question where a failing function was called from.
2024-12-25 14:48:46 +0100 <int-e> If you'd use that indiscriminately then your program would fill up your memory with complete traces of your computation very quickly.
2024-12-25 14:47:39 +0100 <int-e> It's a call stack; for functions with HasCallStack, the compiler adds code to track them and pass that information on to callees that also have a HasCallStack constraint.
2024-12-25 14:45:50 +0100 <yahb2> error :: GHC.Internal.Stack.Types.HasCallStack => [Char] -> a
2024-12-25 14:45:50 +0100 <int-e> % :t error
2024-12-25 14:45:21 +0100 <hellwolf> I read somewhere that I really shouldn't use HasCallStack, what's that all about?
2024-12-25 14:44:44 +0100forell(~forell@user/forell) forell
2024-12-25 14:43:02 +0100meritamen(~meritamen@user/meritamen) meritamen
2024-12-25 14:40:29 +0100merijn(~merijn@128-137-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-12-25 14:36:31 +0100lxsameer(~lxsameer@Serene/lxsameer) (Ping timeout: 252 seconds)
2024-12-25 14:36:18 +0100ash3en(~Thunderbi@p200300ef0f04dc00f0cbb9f6013f5f8e.dip0.t-ipconnect.de) (Quit: ash3en)
2024-12-25 14:35:35 +0100merijn(~merijn@128-137-045-062.dynamic.caiway.nl) merijn
2024-12-25 14:32:30 +0100merijn(~merijn@128-137-045-062.dynamic.caiway.nl) (Ping timeout: 260 seconds)
2024-12-25 14:32:29 +0100meritamen(~meritamen@user/meritamen) (Client Quit)
2024-12-25 14:31:45 +0100forell(~forell@user/forell) (Ping timeout: 244 seconds)
2024-12-25 14:30:32 +0100meritamen(~meritamen@user/meritamen) meritamen
2024-12-25 14:29:05 +0100tromp(~textual@92-110-219-57.cable.dynamic.v4.ziggo.nl)
2024-12-25 14:28:59 +0100meritamen(~meritamen@user/meritamen) (Remote host closed the connection)
2024-12-25 14:25:48 +0100merijn(~merijn@128-137-045-062.dynamic.caiway.nl) merijn
2024-12-25 14:24:55 +0100meritamen(~meritamen@user/meritamen) meritamen
2024-12-25 14:23:26 +0100ash3en(~Thunderbi@p200300ef0f04dc00f0cbb9f6013f5f8e.dip0.t-ipconnect.de) ash3en
2024-12-25 14:23:18 +0100meritamen(~meritamen@user/meritamen) (Remote host closed the connection)
2024-12-25 14:19:21 +0100rekahsoft(~rekahsoft@bras-base-orllon1103w-grc-06-76-69-85-220.dsl.bell.ca) rekahsoft
2024-12-25 14:19:12 +0100meritamen(~meritamen@user/meritamen) meritamen
2024-12-25 14:18:34 +0100meritamen(~meritamen@user/meritamen) (Remote host closed the connection)
2024-12-25 14:16:35 +0100meritamen(~meritamen@user/meritamen) meritamen
2024-12-25 14:15:57 +0100meritamen(~meritamen@user/meritamen) (Remote host closed the connection)