Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IHaskell + HLS support #1065

Open
AJMC2002 opened this issue Mar 3, 2024 · 2 comments
Open

IHaskell + HLS support #1065

AJMC2002 opened this issue Mar 3, 2024 · 2 comments
Labels
lang:haskell Issues related to Haskell language servers

Comments

@AJMC2002
Copy link

AJMC2002 commented Mar 3, 2024

Description

I'm trying to make haskell-language-server work with the following configuration

See config
// /etc/jupyter/jupyter_server_config.d/hls.json
{
    "LanguageServerManager": {
        "language_servers": {
            "haskell-language-server": {
                "version": 2,
                "argv": [
                    "haskell-language-server-wrapper-2.6.0.0",
                    "--lsp",
                    "-d"
                ],
                "languages": [
                    "haskell"
                ],
                "mime_types": [
                    "text/haskell",
                    "text/x-haskell"
                ],
                "display_name": "haskell-language-server",
                "serverSettings": {
                    "haskell": {
                        "checkParents": "CheckOnSave",
                        "checkProject": true,
                        "maxCompletions": 40,
                        "formattingProvider": "fourmolu",
                        "plugin": {
                            "stan": {
                                "globalOn": true
                            }
                        }
                    }
                }
            }
        }
    }
}

I'm running jupyter lab in the clone of IHaskell repository and the LSP isn't working properly since it isn't receiving configuration from the client. After running jupyter lab --ContentsManager.allow_hidden=True I get:

Output
[I 2024-03-03 18:48:11.609 ServerApp] jupyter_lsp | extension was successfully linked.
[I 2024-03-03 18:48:11.616 ServerApp] jupyter_server_terminals | extension was successfully linked.
[I 2024-03-03 18:48:11.623 ServerApp] jupyterlab | extension was successfully linked.
[I 2024-03-03 18:48:11.624 ServerApp] jupyterlab_jupytext | extension was successfully linked.
[I 2024-03-03 18:48:11.628 ServerApp] nbclassic | extension was successfully linked.
[I 2024-03-03 18:48:12.033 ServerApp] jupyter_nbextensions_configurator | extension was found and enabled by notebook_shim. Consider moving the extension to Jupyter Server's extension paths.
[I 2024-03-03 18:48:12.033 ServerApp] jupyter_nbextensions_configurator | extension was successfully linked.
[I 2024-03-03 18:48:12.033 ServerApp] notebook_shim | extension was successfully linked.
[I 2024-03-03 18:48:12.067 ServerApp] notebook_shim | extension was successfully loaded.
[I 2024-03-03 18:48:12.069 ServerApp] jupyter_lsp | extension was successfully loaded.
[I 2024-03-03 18:48:12.070 ServerApp] [jupyter_nbextensions_configurator] enabled 0.6.3
[I 2024-03-03 18:48:12.070 ServerApp] jupyter_nbextensions_configurator | extension was successfully loaded.
[I 2024-03-03 18:48:12.071 ServerApp] jupyter_server_terminals | extension was successfully loaded.
[I 2024-03-03 18:48:12.077 LabApp] JupyterLab extension loaded from /home/le-moski/.local/lib/python3.10/site-packages/jupyterlab
[I 2024-03-03 18:48:12.077 LabApp] JupyterLab application directory is /home/le-moski/.local/share/jupyter/lab
[I 2024-03-03 18:48:12.078 LabApp] Extension Manager is 'pypi'.
[I 2024-03-03 18:48:12.145 ServerApp] jupyterlab | extension was successfully loaded.
[W 2024-03-03 18:48:12.146 ServerApp] [Jupytext Server Extension] Async contents managers like AsyncLargeFileManager are not supported at the moment (https://github.com/mwouts/jupytext/issues/1020). We will derive a contents manager from LargeFileManager instead.
[I 2024-03-03 18:48:12.146 ServerApp] [Jupytext Server Extension] Deriving a JupytextContentsManager from LargeFileManager
[I 2024-03-03 18:48:12.148 ServerApp] jupyterlab_jupytext | extension was successfully loaded.

  _   _          _      _
 | | | |_ __  __| |__ _| |_ ___
 | |_| | '_ \/ _` / _` |  _/ -_)
  \___/| .__/\__,_\__,_|\__\___|
       |_|

Read the migration plan to Notebook 7 to learn about the new features and the actions to take if you are using extensions.

https://jupyter-notebook.readthedocs.io/en/latest/migrate_to_notebook7.html

Please note that updating to Notebook 7 might break some of your extensions.

[I 2024-03-03 18:48:12.156 ServerApp] nbclassic | extension was successfully loaded.
[I 2024-03-03 18:48:12.157 ServerApp] Serving notebooks from local directory: /home/le-moski/Repos/IHaskell
[I 2024-03-03 18:48:12.157 ServerApp] Jupyter Server 2.12.5 is running at:
[I 2024-03-03 18:48:12.157 ServerApp] http://localhost:8888/lab?token=b9b4ec1f0896a2721bb90b0a4877bcbc216200affa5e90b4
[I 2024-03-03 18:48:12.157 ServerApp]     http://127.0.0.1:8888/lab?token=b9b4ec1f0896a2721bb90b0a4877bcbc216200affa5e90b4
[I 2024-03-03 18:48:12.157 ServerApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 2024-03-03 18:48:12.238 ServerApp]

    To access the server, open this file in a browser:
        file:///home/le-moski/.local/share/jupyter/runtime/jpserver-137682-open.html
    Or copy and paste one of these URLs:
        http://localhost:8888/lab?token=b9b4ec1f0896a2721bb90b0a4877bcbc216200affa5e90b4
        http://127.0.0.1:8888/lab?token=b9b4ec1f0896a2721bb90b0a4877bcbc216200affa5e90b4
Opening in existing browser session.
[I 2024-03-03 18:48:12.979 ServerApp] Skipped non-installed server(s): bash-language-server, dockerfile-language-server-nodejs, javascript-typescript-langserver, jedi-language-server, julia-language-server, pyright, python-language-server, python-lsp-server, r-languageserver, sql-language-server, texlab, typescript-language-server, unified-language-server, vscode-css-languageserver-bin, vscode-html-languageserver-bin, vscode-json-languageserver-bin, yaml-language-server
[I 2024-03-03 18:48:15.400 LabApp] `sys_prefix` level settings are read-only, using `user` level for migration to `lockedExtensions`
[I 2024-03-03 18:48:15.447 LabApp] Build is up to date
[I 2024-03-03 18:48:16.299 LabApp] `sys_prefix` level settings are read-only, using `user` level for migration to `lockedExtensions`
[I 2024-03-03 18:48:16.316 LabApp] `sys_prefix` level settings are read-only, using `user` level for migration to `lockedExtensions`
[I 2024-03-03 18:48:16.329 LabApp] `sys_prefix` level settings are read-only, using `user` level for migration to `lockedExtensions`
[I 2024-03-03 18:48:17.027 ServerApp] Kernel started: 2957d348-05be-44ed-b459-c4ff11644407
[I 2024-03-03 18:48:35.452 ServerApp] Adapting from protocol version 5.0 (kernel 2957d348-05be-44ed-b459-c4ff11644407) to 5.3 (client).
[I 2024-03-03 18:48:35.454 ServerApp] Connecting to kernel 2957d348-05be-44ed-b459-c4ff11644407.
[I 2024-03-03 18:48:35.468 ServerApp] Adapting from protocol version 5.0 (kernel 2957d348-05be-44ed-b459-c4ff11644407) to 5.3 (client).
[I 2024-03-03 18:48:35.468 ServerApp] Connecting to kernel 2957d348-05be-44ed-b459-c4ff11644407.
[I 2024-03-03 18:48:35.481 ServerApp] Adapting from protocol version 5.0 (kernel 2957d348-05be-44ed-b459-c4ff11644407) to 5.3 (client).
[I 2024-03-03 18:48:35.482 ServerApp] Connecting to kernel 2957d348-05be-44ed-b459-c4ff11644407.
ghcide version: 2.6.0.0 (GHC: 9.6) (PATH: /home/le-moski/.cabal/store/ghc-9.6.4/ghcide-2.6.0.0-e-ghcide-882412df595efedaf11b3137560708ac54234fb9948efb07422886e7b9ecc009/bin/ghcide)
Info | Logging heap statistics every 60.00s
 Info | Starting LSP server...
  If you are seeing this in a terminal, you probably should have run WITHOUT the --lsp option!
  PluginIds: [ ghcide-completions
             , ghcide-hover-and-symbols
             , LSPRecorderCallback
             , ghcide-type-lenses
             , ghcide-core ]
Info | Starting server
Warning | LSP: configuration parse error:
parsing settings failed, expected Object, but encountered Null
when parsing
null
Info | Started LSP server in 0.09s
Debug | cabal exec -v0 -- ghc --print-libdir
Debug | cabal exec -v0 -- ghc -package-env=- -ignore-dot-ghci -e Control.Monad.join (Control.Monad.fmap System.IO.putStr System.Environment.getExecutablePath)
Debug | cabal --builddir=/home/le-moski/.cache/hie-bios/dist-IHaskell-d9d1573e852f827564b1984ae8f77615 v2-exec --with-compiler /home/le-moski/.cache/hie-bios/wrapper-b54f81dea4c0e6d1626911c526bc4e36 --with-hc-pkg /home/le-moski/.cache/hie-bios/ghc-pkg-2812326d6c0dd442840166eb10cad8e2 ghc -v0 -- --print-libdir
  Environment Variables
    HIE_BIOS_GHC: /home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/bin/ghc-9.6.4
    HIE_BIOS_GHC_ARGS: -B/home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/lib
Debug | Setting initial dynflags...
Debug | shouldRunSubset: False
Debug | Initializing exports map from hiedb
Info | Registering IDE configuration: IdeConfiguration {workspaceFolders = fromList [NormalizedUri (-6436715302807236951) "file:///home/le-moski/Repos/IHaskell/.virtual_documents"], clientSettings = hashed (Just Null)}
Debug | Done initializing exports map from hiedb. Size: 0
Debug | LSP: not requesting configuration since the client does not support workspace/configuration
Debug | LSP: set new config: {  }
Debug | Configuration changed: Config {checkParents = CheckOnSave, checkProject = True, formattingProvider = "ormolu", cabalFormattingProvider = "cabal-fmt", maxCompletions = 40, plugins = fromList []}
Debug | Shake session initialized
Debug | Warning: Client does not support watched files. Falling back to OS polling
Debug | Finished build session
AsyncCancelled
Debug | Restarting build session due to config change
Action Queue: []
Keys: [GetClientSettings; ]
Aborting previous build session took 0.00s
Debug | LSP: not requesting configuration since the client does not support workspace/configuration
Debug | VFS: opening file:///home/le-moski/Repos/IHaskell/.virtual_documents/notebooks/%D0%9F%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D0%BA%D0%B0%202.ipynb
Warning | No plugin handles this "textDocument/didOpen" request.
Warning | No plugin handles this "textDocument/didChange" request.
Warning | No plugin handles this "textDocument/didChange" request.
Warning | No plugin handles this "textDocument/hover" request.
Warning | No plugin handles this "textDocument/documentHighlight" request.
Warning | No plugin handles this "textDocument/documentHighlight" request.
Warning | No plugin handles this "textDocument/documentHighlight" request.
Warning | No plugin handles this "textDocument/completion" request.
Warning | No plugin handles this "textDocument/documentHighlight" request.
Warning | No plugin handles this "textDocument/documentHighlight" request.
Warning | No plugin handles this "textDocument/documentHighlight" request.
Warning | No plugin handles this "textDocument/documentHighlight" request.
^C[I 2024-03-03 18:49:33.152 ServerApp] interrupted
[I 2024-03-03 18:49:33.153 ServerApp] Serving notebooks from local directory: /home/le-moski/Repos/IHaskell
    1 active kernel
    Jupyter Server 2.12.5 is running at:
    http://localhost:8888/lab?token=b9b4ec1f0896a2721bb90b0a4877bcbc216200affa5e90b4
        http://127.0.0.1:8888/lab?token=b9b4ec1f0896a2721bb90b0a4877bcbc216200affa5e90b4
Shutdown this Jupyter server (y/[n])? y
[C 2024-03-03 18:49:33.987 ServerApp] Shutdown confirmed
[I 2024-03-03 18:49:33.989 ServerApp] Shutting down 7 extensions
[I 2024-03-03 18:49:33.991 ServerApp] Shutting down 1 kernel
[I 2024-03-03 18:49:33.992 ServerApp] Kernel shutdown: 2957d348-05be-44ed-b459-c4ff11644407
Press Ctrl-C again to quit kernel.

Basically the server does nothing, is there some way to fix this or is it some issue with jupyterlab-lsp, or even with hls settings?

Reproduce

  1. Install IHaskell. For Linux that is:
curl -sSL https://get.haskellstack.org/ | sh
git clone https://github.com/gibiansky/IHaskell
cd IHaskell
pip3 install -r requirements.txt
stack install --fast
ihaskell install --stack
  1. (For Linux) Create a .lsp_symlink directing to /.
  2. Delete the static-canvas dependencies in cabal.project.
  3. Run jupyter lab --ContentsManager.allow_hidden=True.

Expected behavior

The language server should provide it's functionality but instead it returns a warning:

Warning | No plugin handles this "..." request.

I assume the established configuration doesn't get to the lsp since it shows:

Info | Logging heap statistics every 60.00s
 Info | Starting LSP server...
  If you are seeing this in a terminal, you probably should have run WITHOUT the --lsp option!
  PluginIds: [ ghcide-completions
             , ghcide-hover-and-symbols
             , LSPRecorderCallback
             , ghcide-type-lenses
             , ghcide-core ]
Info | Starting server
Warning | LSP: configuration parse error:
parsing settings failed, expected Object, but encountered Null
when parsing
null
@krassowski
Copy link
Member

Thanks @AJMC2002. It looks related to haskell/haskell-language-server#3821

Debug | VFS: opening file:///home/le-moski/Repos/IHaskell/.virtual_documents/notebooks/%D0%9F%D1%80%D0%B0%D0%BA%D1%82%D0%B8%D0%BA%D0%B0%202.ipynb
Warning | No plugin handles this "textDocument/didOpen" request.

What is the notebook name? This percent encoding looks odd.

Based on haskell/haskell-language-server#3821 (comment):

We can possibly find a better way of determining the file type that doesn't involve parsing the URI

I understand that haskell-language-server tries to infer the type from file URI (so basically from extension). If I see this correctly, it will not infer much from .ipynb. There was a previous moderately successful attempt to setup haskell language server in #313. Does it work for you if you open a .hs file rather than a notebook?

If the haskell language server requires .hs extension we can force-append it to the file path. This was previously discussed in #872 and a PR was opened #873 but code has moved since to https://github.com/jupyterlab/jupyterlab/tree/main/packages/lsp/src so a new PR is needed.

@krassowski krassowski added the lang:haskell Issues related to Haskell language servers label Mar 3, 2024
@AJMC2002
Copy link
Author

AJMC2002 commented Mar 4, 2024

What is the notebook name? This percent encoding looks odd.

It's "Практика 2.ipynb". I assume it's just changing the Cyrillic alphabet into utf-8 hex codes.

So I'll put my attempts below using the following base test file in /IHaskell/notebooks and running jupyter lab --ContentsManager.allow_hidden=True in /IHaskell:

-- /IHaskell/notebooks/test.hs
main = sumSomething genSomething

genSomething = replicate 5 10

sumSomething = sum

doSomething = do
	return $ sumSomething genSomething

Only opening the test file in Jupyter Lab and not doing anything else

Jupyter Lab output
[I 2024-03-04 15:39:33.433 LabApp] `sys_prefix` level settings are read-only, using `user` level for migration to `lockedExtensions`
[I 2024-03-04 15:39:33.440 LabApp] Build is up to date
Found "/home/le-moski/Repos/IHaskell/hie.yaml" for "/home/le-moski/Repos/IHaskell/a"
Run entered for haskell-language-server-wrapper(haskell-language-server-wrapper-2.6.0.0) Version 2.6.0.0 x86_64 ghc-9.2.8
Current directory: /home/le-moski/Repos/IHaskell
Operating system: linux
Arguments: ["--lsp","-d"]
Cradle directory: /home/le-moski/Repos/IHaskell
Cradle type: Cabal

Tool versions found on the $PATH
cabal:          3.10.2.1
stack:          2.15.1
ghc:            9.6.4


Consulting the cradle to get project GHC version...
[I 2024-03-04 15:39:34.316 ServerApp] Kernel started: 69f3c2a2-8ec9-4ebc-994c-e2000b9f836a
2024-03-04T05:39:34.979682Z | Debug | cabal exec -v0 -- ghc --print-libdir
2024-03-04T05:39:35.762723Z | Debug | cabal exec -v0 -- ghc -package-env=- -ignore-dot-ghci -e Control.Monad.join (Control.Monad.fmap System.IO.putStr System.Environment.getExecutablePath)
2024-03-04T05:39:36.247648Z | Debug | cabal --builddir=/home/le-moski/.cache/hie-bios/dist-IHaskell-d9d1573e852f827564b1984ae8f77615 v2-exec --with-compiler /home/le-moski/.cache/hie-bios/wrapper-b54f81dea4c0e6d1626911c526bc4e36 --with-hc-pkg /home/le-moski/.cache/hie-bios/ghc-pkg-2812326d6c0dd442840166eb10cad8e2 ghc -v0 -- --numeric-version
  Environment Variables
    HIE_BIOS_GHC: /home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/bin/ghc-9.6.4
    HIE_BIOS_GHC_ARGS: -B/home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/lib
Project GHC version: 9.6.4
haskell-language-server exe candidates: ["haskell-language-server-9.6.4","haskell-language-server"]
Launching haskell-language-server exe at:/home/le-moski/.ghcup/bin/haskell-language-server-9.6.4
2024-03-04T05:39:36.730311Z | Debug | cabal exec -v0 -- ghc --print-libdir
2024-03-04T05:39:37.384842Z | Debug | cabal exec -v0 -- ghc -package-env=- -ignore-dot-ghci -e Control.Monad.join (Control.Monad.fmap System.IO.putStr System.Environment.getExecutablePath)
2024-03-04T05:39:38.020021Z | Debug | cabal --builddir=/home/le-moski/.cache/hie-bios/dist-IHaskell-d9d1573e852f827564b1984ae8f77615 v2-exec --with-compiler /home/le-moski/.cache/hie-bios/wrapper-b54f81dea4c0e6d1626911c526bc4e36 --with-hc-pkg /home/le-moski/.cache/hie-bios/ghc-pkg-2812326d6c0dd442840166eb10cad8e2 ghc -v0 -- -v0 -package-env=- -ignore-dot-ghci -e Control.Monad.join (Control.Monad.fmap System.IO.putStr System.Environment.getExecutablePath)
  Environment Variables
    HIE_BIOS_GHC: /home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/bin/ghc-9.6.4
    HIE_BIOS_GHC_ARGS: -B/home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/lib
2024-03-04T05:39:38.496970Z | Debug | cabal exec -v0 -- ghc --print-libdir
2024-03-04T05:39:39.080067Z | Debug | cabal exec -v0 -- ghc -package-env=- -ignore-dot-ghci -e Control.Monad.join (Control.Monad.fmap System.IO.putStr System.Environment.getExecutablePath)
2024-03-04T05:39:39.563657Z | Debug | cabal --builddir=/home/le-moski/.cache/hie-bios/dist-IHaskell-d9d1573e852f827564b1984ae8f77615 v2-exec --with-compiler /home/le-moski/.cache/hie-bios/wrapper-b54f81dea4c0e6d1626911c526bc4e36 --with-hc-pkg /home/le-moski/.cache/hie-bios/ghc-pkg-2812326d6c0dd442840166eb10cad8e2 ghc -v0 -- --print-libdir
  Environment Variables
    HIE_BIOS_GHC: /home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/bin/ghc-9.6.4
    HIE_BIOS_GHC_ARGS: -B/home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/lib
2024-03-04T05:39:41.721019Z | Info | haskell-language-server version: 2.6.0.0 (GHC: 9.6.4) (PATH: /home/le-moski/.ghcup/hls/2.6.0.0/lib/haskell-language-server-2.6.0.0/bin/haskell-language-server-9.6.4)
2024-03-04T05:39:41.722770Z | Info | Directory: /home/le-moski/Repos/IHaskell
2024-03-04T05:39:41.723241Z | Info | Starting (haskell-language-server) LSP server...
  GhcideArguments {argsCommand = LSP, argsCwd = Nothing, argsShakeProfiling = Nothing, argsTesting = False, argsExamplePlugin = False, argsLogLevel = Debug, argsLogFile = Nothing, argsLogStderr = True, argsLogClient = False, argsThreads = 0, argsProjectGhcVersion = False}
  PluginIds: [ pragmas-suggest
             , pragmas-completion
             , retrie
             , ghcide-completions
             , alternateNumberFormat
             , ghcide-code-actions-bindings
             , explicit-fields
             , ghcide-hover-and-symbols
             , ghcide-code-actions-type-signatures
             , semanticTokens
             , floskell
             , fourmolu
             , ghcide-extend-import-action
             , ghcide-code-actions-fill-holes
             , importLens
             , LSPRecorderCallback
             , cabal
             , qualifyImportedNames
             , moduleName
             , splice
             , stylish-haskell
             , changeTypeSignature
             , hlint
             , class
             , ormolu
             , callHierarchy
             , stan
             , ghcide-type-lenses
             , codeRange
             , cabal-fmt
             , eval
             , rename
             , ghcide-code-actions-imports-exports
             , gadt
             , overloaded-record-dot
             , ghcide-core
             , explicit-fixity
             , pragmas-disable ]
2024-03-04T05:39:41.732179Z | Info | Logging heap statistics every 60.00s
 2024-03-04T05:39:41.743354Z | Info | Starting LSP server...
  If you are seeing this in a terminal, you probably should have run WITHOUT the --lsp option!
  PluginIds: [ pragmas-suggest
             , pragmas-completion
             , retrie
             , ghcide-completions
             , alternateNumberFormat
             , ghcide-code-actions-bindings
             , explicit-fields
             , ghcide-hover-and-symbols
             , ghcide-code-actions-type-signatures
             , semanticTokens
             , floskell
             , fourmolu
             , ghcide-extend-import-action
             , ghcide-code-actions-fill-holes
             , importLens
             , LSPRecorderCallback
             , cabal
             , qualifyImportedNames
             , moduleName
             , splice
             , stylish-haskell
             , changeTypeSignature
             , hlint
             , class
             , ormolu
             , callHierarchy
             , stan
             , ghcide-type-lenses
             , codeRange
             , cabal-fmt
             , eval
             , rename
             , ghcide-code-actions-imports-exports
             , gadt
             , overloaded-record-dot
             , ghcide-core
             , explicit-fixity
             , pragmas-disable ]
2024-03-04T05:39:41.744136Z | Info | Starting server
2024-03-04T05:39:41.745425Z | Warning | LSP: configuration parse error:
parsing settings failed, expected Object, but encountered Null
when parsing
null
2024-03-04T05:39:41.746388Z | Info | Started LSP server in 0.00s
2024-03-04T05:39:42.220741Z | Debug | cabal exec -v0 -- ghc --print-libdir
2024-03-04T05:39:42.793273Z | Debug | cabal exec -v0 -- ghc -package-env=- -ignore-dot-ghci -e Control.Monad.join (Control.Monad.fmap System.IO.putStr System.Environment.getExecutablePath)
2024-03-04T05:39:43.286554Z | Debug | cabal --builddir=/home/le-moski/.cache/hie-bios/dist-IHaskell-d9d1573e852f827564b1984ae8f77615 v2-exec --with-compiler /home/le-moski/.cache/hie-bios/wrapper-b54f81dea4c0e6d1626911c526bc4e36 --with-hc-pkg /home/le-moski/.cache/hie-bios/ghc-pkg-2812326d6c0dd442840166eb10cad8e2 ghc -v0 -- --print-libdir
  Environment Variables
    HIE_BIOS_GHC: /home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/bin/ghc-9.6.4
    HIE_BIOS_GHC_ARGS: -B/home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/lib
2024-03-04T05:39:43.290210Z | Debug | Setting initial dynflags...
2024-03-04T05:39:43.290479Z | Debug | shouldRunSubset: False
2024-03-04T05:39:43.290710Z | Debug | Initializing exports map from hiedb
2024-03-04T05:39:43.291235Z | Info | Registering IDE configuration: IdeConfiguration {workspaceFolders = fromList [NormalizedUri (-1675342282338401631) "file:///home/le-moski/Repos/IHaskell"], clientSettings = hashed (Just Null)}
2024-03-04T05:39:43.295331Z | Debug | Done initializing exports map from hiedb. Size: 0
2024-03-04T05:39:43.339997Z | Debug | LSP: not requesting configuration since the client does not support workspace/configuration
2024-03-04T05:39:43.340286Z | Debug | Shake session initialized
2024-03-04T05:39:43.340340Z | Debug | LSP: set new config: {  }
2024-03-04T05:39:43.340472Z | Debug | Warning: Client does not support watched files. Falling back to OS polling
2024-03-04T05:39:43.340690Z | Debug | Configuration changed: Config {checkParents = CheckOnSave, checkProject = True, formattingProvider = "ormolu", cabalFormattingProvider = "cabal-fmt", maxCompletions = 40, plugins = fromList []}
2024-03-04T05:39:43.341289Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:39:43.341300Z | Debug | Restarting build session due to config change
Action Queue: []
Keys: [GetClientSettings; ]
Aborting previous build session took 0.00s
2024-03-04T05:39:43.341919Z | Debug | LSP: not requesting configuration since the client does not support workspace/configuration
2024-03-04T05:39:43.436795Z | Debug | VFS: opening file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:39:43.438211Z | Debug | Set files of interest to: fromList [(NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs",Modified {firstOpen = True})]
2024-03-04T05:39:43.438781Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:39:43.438816Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ GetClientSettings;
      , IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:39:43.439459Z | Debug | Opened text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:39:43.440541Z | Debug | Set files of interest to: fromList [(NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs",Modified {firstOpen = False})]
2024-03-04T05:39:43.441346Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:39:43.441353Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs]
Aborting previous build session took 0.00s
2024-03-04T05:39:43.441823Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:39:43.442348Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:39:43.443057Z | Info | Cradle path: notebooks/test.hs
2024-03-04T05:39:43.444488Z | Debug | Cradle: Cradle{ cradleRootDir = "/home/le-moski/Repos/IHaskell", cradleOptsProg = CradleAction: Cabal}
2024-03-04T05:39:43.444613Z | Info | invoking build tool to determine build flags (this may take some time depending on the cache)
2024-03-04T05:39:43.444758Z | Debug | Session loading result: Left [CradleError {cradleErrorDependencies = [], cradleErrorExitCode = ExitSuccess, cradleErrorStderr = ["Multi Cradle: No prefixes matched","pwd: /home/le-moski/Repos/IHaskell","filepath: /home/le-moski/Repos/IHaskell/notebooks/test.hs","prefixes:","(\"/home/le-moski/Repos/IHaskell/test\",Cabal)","(\"/home/le-moski/Repos/IHaskell/src\",Cabal)","(\"/home/le-moski/Repos/IHaskell/main\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ipython-kernel\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-widgets\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-static-canvas\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-plot\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-magic\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-juicypixels\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-hatex\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-graphviz\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-gnuplot\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-diagrams\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-charts\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-blaze\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-aeson\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ghc-parser\",Cabal)"]}]
2024-03-04T05:39:43.445813Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs]
Aborting previous build session took 0.00s
2024-03-04T05:39:43.445816Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:39:43.446045Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:39:43.446519Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:39:43.448287Z | Debug | LOOKUP PERSISTENT FOR: GetModSummaryWithoutTimestamps
2024-03-04T05:39:43.448393Z | Debug | LOOKUP PERSISTENT FOR: GhcSessionDeps
[I 2024-03-04 15:39:52.313 ServerApp] Adapting from protocol version 5.0 (kernel 69f3c2a2-8ec9-4ebc-994c-e2000b9f836a) to 5.3 (client).
[I 2024-03-04 15:39:52.315 ServerApp] Connecting to kernel 69f3c2a2-8ec9-4ebc-994c-e2000b9f836a.
[I 2024-03-04 15:39:52.328 ServerApp] Adapting from protocol version 5.0 (kernel 69f3c2a2-8ec9-4ebc-994c-e2000b9f836a) to 5.3 (client).
[I 2024-03-04 15:39:52.329 ServerApp] Connecting to kernel 69f3c2a2-8ec9-4ebc-994c-e2000b9f836a.
[I 2024-03-04 15:39:52.342 ServerApp] Adapting from protocol version 5.0 (kernel 69f3c2a2-8ec9-4ebc-994c-e2000b9f836a) to 5.3 (client).
[I 2024-03-04 15:39:52.343 ServerApp] Connecting to kernel 69f3c2a2-8ec9-4ebc-994c-e2000b9f836a.

First try + Error message

After loading the file, there's an error present, since test.hs isn't listed in the .cabal file of the current directory.
I guess that has something to do with lines like

2024-03-04T05:48:36.092897Z | Debug | explicit-fixity: Rule Failed: GetHieAst

in the output log.

Here's the error message:

image

When hovering over it, the LSP outputs the following:

2024-03-04T05:48:19.138978Z | Debug | DocumentHighlight request at position 1:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:48:19.139307Z | Debug | LOOKUP PERSISTENT FOR: GetHieAst
2024-03-04T05:48:19.139368Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:48:36.091871Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:48:36.092286Z | Debug | LOOKUP PERSISTENT FOR: GetFixity
2024-03-04T05:48:36.092293Z | Debug | Hover request at position 1:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:48:36.092496Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:48:36.092801Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:48:36.092897Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:48:36.093117Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s

Autocompletion works with locally defined functions and bindings. Nonetheless for dependencies installed in the directory, it doesn't autocomplete anything.

image

Using tab in an empty function shows common keywords.

image

Jumping to definition and showing references doesnt work.

The output of the LSP doens't mention much about autocompletion or other requests, mainly showing output of hovering and rebuilding everytime the file is modified.

Complete output
[I 2024-03-04 15:59:20.431 ServerApp] jupyter_lsp | extension was successfully linked.
[I 2024-03-04 15:59:20.436 ServerApp] jupyter_server_terminals | extension was successfully linked.
[I 2024-03-04 15:59:20.442 ServerApp] jupyterlab | extension was successfully linked.
[I 2024-03-04 15:59:20.442 ServerApp] jupyterlab_jupytext | extension was successfully linked.
[I 2024-03-04 15:59:20.447 ServerApp] nbclassic | extension was successfully linked.
[I 2024-03-04 15:59:20.814 ServerApp] jupyter_nbextensions_configurator | extension was found and enabled by notebook_shim. Consider moving the extension to Jupyter Server's extension paths.
[I 2024-03-04 15:59:20.814 ServerApp] jupyter_nbextensions_configurator | extension was successfully linked.
[I 2024-03-04 15:59:20.814 ServerApp] notebook_shim | extension was successfully linked.
[I 2024-03-04 15:59:20.847 ServerApp] notebook_shim | extension was successfully loaded.
[I 2024-03-04 15:59:20.850 ServerApp] jupyter_lsp | extension was successfully loaded.
[I 2024-03-04 15:59:20.851 ServerApp] [jupyter_nbextensions_configurator] enabled 0.6.3
[I 2024-03-04 15:59:20.851 ServerApp] jupyter_nbextensions_configurator | extension was successfully loaded.
[I 2024-03-04 15:59:20.853 ServerApp] jupyter_server_terminals | extension was successfully loaded.
[I 2024-03-04 15:59:20.856 LabApp] JupyterLab extension loaded from /home/le-moski/.local/lib/python3.10/site-packages/jupyterlab
[I 2024-03-04 15:59:20.856 LabApp] JupyterLab application directory is /home/le-moski/.local/share/jupyter/lab
[I 2024-03-04 15:59:20.856 LabApp] Extension Manager is 'pypi'.
[I 2024-03-04 15:59:20.922 ServerApp] jupyterlab | extension was successfully loaded.
[W 2024-03-04 15:59:20.922 ServerApp] [Jupytext Server Extension] Async contents managers like AsyncLargeFileManager are not supported at the moment (https://github.com/mwouts/jupytext/issues/1020). We will derive a contents manager from LargeFileManager instead.
[I 2024-03-04 15:59:20.922 ServerApp] [Jupytext Server Extension] Deriving a JupytextContentsManager from LargeFileManager
[I 2024-03-04 15:59:20.923 ServerApp] jupyterlab_jupytext | extension was successfully loaded.

  _   _          _      _
 | | | |_ __  __| |__ _| |_ ___
 | |_| | '_ \/ _` / _` |  _/ -_)
  \___/| .__/\__,_\__,_|\__\___|
       |_|

Read the migration plan to Notebook 7 to learn about the new features and the actions to take if you are using extensions.

https://jupyter-notebook.readthedocs.io/en/latest/migrate_to_notebook7.html

Please note that updating to Notebook 7 might break some of your extensions.

[I 2024-03-04 15:59:20.928 ServerApp] nbclassic | extension was successfully loaded.
[I 2024-03-04 15:59:20.929 ServerApp] Serving notebooks from local directory: /home/le-moski/Repos/IHaskell
[I 2024-03-04 15:59:20.929 ServerApp] Jupyter Server 2.12.5 is running at:
[I 2024-03-04 15:59:20.929 ServerApp] http://localhost:8888/lab?token=e9f26b265eaf2cfbdfd49b5fb21fb7b841929c9f611c8344
[I 2024-03-04 15:59:20.929 ServerApp]     http://127.0.0.1:8888/lab?token=e9f26b265eaf2cfbdfd49b5fb21fb7b841929c9f611c8344
[I 2024-03-04 15:59:20.929 ServerApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 2024-03-04 15:59:20.934 ServerApp]

    To access the server, open this file in a browser:
        file:///home/le-moski/.local/share/jupyter/runtime/jpserver-11847-open.html
    Or copy and paste one of these URLs:
        http://localhost:8888/lab?token=e9f26b265eaf2cfbdfd49b5fb21fb7b841929c9f611c8344
        http://127.0.0.1:8888/lab?token=e9f26b265eaf2cfbdfd49b5fb21fb7b841929c9f611c8344
[I 2024-03-04 15:59:21.447 ServerApp] Skipped non-installed server(s): bash-language-server, dockerfile-language-server-nodejs, javascript-typescript-langserver, jedi-language-server, julia-language-server, pyright, python-language-server, python-lsp-server, r-languageserver, sql-language-server, texlab, typescript-language-server, unified-language-server, vscode-css-languageserver-bin, vscode-html-languageserver-bin, vscode-json-languageserver-bin, yaml-language-server
[I 2024-03-04 15:59:24.243 LabApp] `sys_prefix` level settings are read-only, using `user` level for migration to `lockedExtensions`
[I 2024-03-04 15:59:24.251 LabApp] Build is up to date
Found "/home/le-moski/Repos/IHaskell/hie.yaml" for "/home/le-moski/Repos/IHaskell/a"
Run entered for haskell-language-server-wrapper(haskell-language-server-wrapper-2.6.0.0) Version 2.6.0.0 x86_64 ghc-9.2.8
Current directory: /home/le-moski/Repos/IHaskell
Operating system: linux
Arguments: ["--lsp","-d"]
Cradle directory: /home/le-moski/Repos/IHaskell
Cradle type: Cabal

Tool versions found on the $PATH
cabal:          3.10.2.1
stack:          2.15.1
ghc:            9.6.4


Consulting the cradle to get project GHC version...
[I 2024-03-04 15:59:25.362 ServerApp] Kernel started: 3c07fb5e-8f7c-4b91-9bfa-9e8d7c8359cf
2024-03-04T05:59:25.851295Z | Debug | cabal exec -v0 -- ghc --print-libdir
2024-03-04T05:59:26.564354Z | Debug | cabal exec -v0 -- ghc -package-env=- -ignore-dot-ghci -e Control.Monad.join (Control.Monad.fmap System.IO.putStr System.Environment.getExecutablePath)
2024-03-04T05:59:27.120897Z | Debug | cabal --builddir=/home/le-moski/.cache/hie-bios/dist-IHaskell-d9d1573e852f827564b1984ae8f77615 v2-exec --with-compiler /home/le-moski/.cache/hie-bios/wrapper-b54f81dea4c0e6d1626911c526bc4e36 --with-hc-pkg /home/le-moski/.cache/hie-bios/ghc-pkg-2812326d6c0dd442840166eb10cad8e2 ghc -v0 -- --numeric-version
  Environment Variables
    HIE_BIOS_GHC: /home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/bin/ghc-9.6.4
    HIE_BIOS_GHC_ARGS: -B/home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/lib
Project GHC version: 9.6.4
haskell-language-server exe candidates: ["haskell-language-server-9.6.4","haskell-language-server"]
Launching haskell-language-server exe at:/home/le-moski/.ghcup/bin/haskell-language-server-9.6.4
2024-03-04T05:59:27.611526Z | Debug | cabal exec -v0 -- ghc --print-libdir
2024-03-04T05:59:28.194560Z | Debug | cabal exec -v0 -- ghc -package-env=- -ignore-dot-ghci -e Control.Monad.join (Control.Monad.fmap System.IO.putStr System.Environment.getExecutablePath)
2024-03-04T05:59:28.789162Z | Debug | cabal --builddir=/home/le-moski/.cache/hie-bios/dist-IHaskell-d9d1573e852f827564b1984ae8f77615 v2-exec --with-compiler /home/le-moski/.cache/hie-bios/wrapper-b54f81dea4c0e6d1626911c526bc4e36 --with-hc-pkg /home/le-moski/.cache/hie-bios/ghc-pkg-2812326d6c0dd442840166eb10cad8e2 ghc -v0 -- -v0 -package-env=- -ignore-dot-ghci -e Control.Monad.join (Control.Monad.fmap System.IO.putStr System.Environment.getExecutablePath)
  Environment Variables
    HIE_BIOS_GHC: /home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/bin/ghc-9.6.4
    HIE_BIOS_GHC_ARGS: -B/home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/lib
2024-03-04T05:59:29.307024Z | Debug | cabal exec -v0 -- ghc --print-libdir
2024-03-04T05:59:29.910349Z | Debug | cabal exec -v0 -- ghc -package-env=- -ignore-dot-ghci -e Control.Monad.join (Control.Monad.fmap System.IO.putStr System.Environment.getExecutablePath)
2024-03-04T05:59:30.405772Z | Debug | cabal --builddir=/home/le-moski/.cache/hie-bios/dist-IHaskell-d9d1573e852f827564b1984ae8f77615 v2-exec --with-compiler /home/le-moski/.cache/hie-bios/wrapper-b54f81dea4c0e6d1626911c526bc4e36 --with-hc-pkg /home/le-moski/.cache/hie-bios/ghc-pkg-2812326d6c0dd442840166eb10cad8e2 ghc -v0 -- --print-libdir
  Environment Variables
    HIE_BIOS_GHC: /home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/bin/ghc-9.6.4
    HIE_BIOS_GHC_ARGS: -B/home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/lib
2024-03-04T05:59:32.594582Z | Info | haskell-language-server version: 2.6.0.0 (GHC: 9.6.4) (PATH: /home/le-moski/.ghcup/hls/2.6.0.0/lib/haskell-language-server-2.6.0.0/bin/haskell-language-server-9.6.4)
2024-03-04T05:59:32.596812Z | Info | Directory: /home/le-moski/Repos/IHaskell
2024-03-04T05:59:32.597477Z | Info | Starting (haskell-language-server) LSP server...
  GhcideArguments {argsCommand = LSP, argsCwd = Nothing, argsShakeProfiling = Nothing, argsTesting = False, argsExamplePlugin = False, argsLogLevel = Debug, argsLogFile = Nothing, argsLogStderr = True, argsLogClient = False, argsThreads = 0, argsProjectGhcVersion = False}
  PluginIds: [ pragmas-suggest
             , pragmas-completion
             , retrie
             , ghcide-completions
             , alternateNumberFormat
             , ghcide-code-actions-bindings
             , explicit-fields
             , ghcide-hover-and-symbols
             , ghcide-code-actions-type-signatures
             , semanticTokens
             , floskell
             , fourmolu
             , ghcide-extend-import-action
             , ghcide-code-actions-fill-holes
             , importLens
             , LSPRecorderCallback
             , cabal
             , qualifyImportedNames
             , moduleName
             , splice
             , stylish-haskell
             , changeTypeSignature
             , hlint
             , class
             , ormolu
             , callHierarchy
             , stan
             , ghcide-type-lenses
             , codeRange
             , cabal-fmt
             , eval
             , rename
             , ghcide-code-actions-imports-exports
             , gadt
             , overloaded-record-dot
             , ghcide-core
             , explicit-fixity
             , pragmas-disable ]
2024-03-04T05:59:32.608269Z | Info | Logging heap statistics every 60.00s
 2024-03-04T05:59:32.619022Z | Info | Starting LSP server...
  If you are seeing this in a terminal, you probably should have run WITHOUT the --lsp option!
  PluginIds: [ pragmas-suggest
             , pragmas-completion
             , retrie
             , ghcide-completions
             , alternateNumberFormat
             , ghcide-code-actions-bindings
             , explicit-fields
             , ghcide-hover-and-symbols
             , ghcide-code-actions-type-signatures
             , semanticTokens
             , floskell
             , fourmolu
             , ghcide-extend-import-action
             , ghcide-code-actions-fill-holes
             , importLens
             , LSPRecorderCallback
             , cabal
             , qualifyImportedNames
             , moduleName
             , splice
             , stylish-haskell
             , changeTypeSignature
             , hlint
             , class
             , ormolu
             , callHierarchy
             , stan
             , ghcide-type-lenses
             , codeRange
             , cabal-fmt
             , eval
             , rename
             , ghcide-code-actions-imports-exports
             , gadt
             , overloaded-record-dot
             , ghcide-core
             , explicit-fixity
             , pragmas-disable ]
2024-03-04T05:59:32.619719Z | Info | Starting server
2024-03-04T05:59:32.621107Z | Warning | LSP: configuration parse error:
parsing settings failed, expected Object, but encountered Null
when parsing
null
2024-03-04T05:59:32.622193Z | Info | Started LSP server in 0.00s
2024-03-04T05:59:33.107633Z | Debug | cabal exec -v0 -- ghc --print-libdir
2024-03-04T05:59:33.710045Z | Debug | cabal exec -v0 -- ghc -package-env=- -ignore-dot-ghci -e Control.Monad.join (Control.Monad.fmap System.IO.putStr System.Environment.getExecutablePath)
2024-03-04T05:59:34.232994Z | Debug | cabal --builddir=/home/le-moski/.cache/hie-bios/dist-IHaskell-d9d1573e852f827564b1984ae8f77615 v2-exec --with-compiler /home/le-moski/.cache/hie-bios/wrapper-b54f81dea4c0e6d1626911c526bc4e36 --with-hc-pkg /home/le-moski/.cache/hie-bios/ghc-pkg-2812326d6c0dd442840166eb10cad8e2 ghc -v0 -- --print-libdir
  Environment Variables
    HIE_BIOS_GHC: /home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/bin/ghc-9.6.4
    HIE_BIOS_GHC_ARGS: -B/home/le-moski/.ghcup/ghc/9.6.4/lib/ghc-9.6.4/lib
2024-03-04T05:59:34.235830Z | Debug | Setting initial dynflags...
2024-03-04T05:59:34.236050Z | Debug | shouldRunSubset: False
2024-03-04T05:59:34.236289Z | Debug | Initializing exports map from hiedb
2024-03-04T05:59:34.236801Z | Info | Registering IDE configuration: IdeConfiguration {workspaceFolders = fromList [NormalizedUri (-1675342282338401631) "file:///home/le-moski/Repos/IHaskell"], clientSettings = hashed (Just Null)}
2024-03-04T05:59:34.240511Z | Debug | Done initializing exports map from hiedb. Size: 0
2024-03-04T05:59:34.273317Z | Debug | LSP: not requesting configuration since the client does not support workspace/configuration
2024-03-04T05:59:34.273584Z | Debug | Shake session initialized
2024-03-04T05:59:34.273590Z | Debug | LSP: set new config: {  }
2024-03-04T05:59:34.273707Z | Debug | Warning: Client does not support watched files. Falling back to OS polling
2024-03-04T05:59:34.273835Z | Debug | Configuration changed: Config {checkParents = CheckOnSave, checkProject = True, formattingProvider = "ormolu", cabalFormattingProvider = "cabal-fmt", maxCompletions = 40, plugins = fromList []}
2024-03-04T05:59:34.274420Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:34.274440Z | Debug | Restarting build session due to config change
Action Queue: []
Keys: [GetClientSettings; ]
Aborting previous build session took 0.00s
2024-03-04T05:59:34.274853Z | Debug | LSP: not requesting configuration since the client does not support workspace/configuration
2024-03-04T05:59:34.372072Z | Debug | VFS: opening file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:34.373845Z | Debug | Set files of interest to: fromList [(NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs",Modified {firstOpen = True})]
2024-03-04T05:59:34.374367Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:34.374411Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ GetClientSettings;
      , IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:34.374804Z | Debug | Opened text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:34.375376Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:34.375513Z | Debug | Set files of interest to: fromList [(NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs",Modified {firstOpen = False})]
2024-03-04T05:59:34.375974Z | Info | Cradle path: notebooks/test.hs
2024-03-04T05:59:34.378369Z | Debug | Cradle: Cradle{ cradleRootDir = "/home/le-moski/Repos/IHaskell", cradleOptsProg = CradleAction: Cabal}
2024-03-04T05:59:34.378528Z | Info | invoking build tool to determine build flags (this may take some time depending on the cache)
2024-03-04T05:59:34.378697Z | Debug | Session loading result: Left [CradleError {cradleErrorDependencies = [], cradleErrorExitCode = ExitSuccess, cradleErrorStderr = ["Multi Cradle: No prefixes matched","pwd: /home/le-moski/Repos/IHaskell","filepath: /home/le-moski/Repos/IHaskell/notebooks/test.hs","prefixes:","(\"/home/le-moski/Repos/IHaskell/test\",Cabal)","(\"/home/le-moski/Repos/IHaskell/src\",Cabal)","(\"/home/le-moski/Repos/IHaskell/main\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ipython-kernel\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-widgets\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-static-canvas\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-plot\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-magic\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-juicypixels\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-hatex\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-graphviz\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-gnuplot\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-diagrams\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-charts\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-blaze\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ihaskell-display/ihaskell-aeson\",Cabal)","(\"/home/le-moski/Repos/IHaskell/ghc-parser\",Cabal)"]}]
2024-03-04T05:59:34.379401Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:34.379405Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:34.379768Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:34.380163Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:34.382469Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:34.382476Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:34.382809Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:34.383107Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:34.385411Z | Debug | LOOKUP PERSISTENT FOR: GetModSummaryWithoutTimestamps
2024-03-04T05:59:34.385570Z | Debug | LOOKUP PERSISTENT FOR: GhcSessionDeps
2024-03-04T05:59:37.469935Z | Debug | DocumentHighlight request at position 1:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:37.470119Z | Debug | LOOKUP PERSISTENT FOR: GetHieAst
2024-03-04T05:59:37.470127Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.072038Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:39.072142Z | Debug | LOOKUP PERSISTENT FOR: GetFixity
2024-03-04T05:59:39.072214Z | Debug | Hover request at position 3:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:39.072310Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.072387Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.072437Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:39.072545Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.339132Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:39.339362Z | Debug | Hover request at position 1:33 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:39.339396Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.339402Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.339526Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:39.339542Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.572039Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:39.572195Z | Debug | Hover request at position 1:32 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:39.572259Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.572269Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.572405Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.572425Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:39.664757Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:39.664911Z | Debug | Hover request at position 1:33 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:39.664997Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.665016Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.665050Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.665063Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:39.772463Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:39.772685Z | Debug | Hover request at position 1:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:39.772698Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.772732Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.772898Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.772908Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:39.867544Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:39.867678Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.867681Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:39.867741Z | Debug | Hover request at position 1:29 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:39.868146Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:39.868170Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:41.372062Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:41.372200Z | Debug | Hover request at position 1:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:41.372259Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:41.372265Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:41.372424Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:41.372424Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:41.481378Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:41.481572Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:41.481576Z | Debug | Hover request at position 1:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:41.481577Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:41.481829Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:41.481845Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:41.583720Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:41.583909Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:41.583932Z | Debug | Hover request at position 1:33 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:41.583941Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:41.584195Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:41.584214Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:41.805169Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:41.805383Z | Debug | Hover request at position 3:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:41.805383Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:41.805506Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:41.805610Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:41.805652Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:43.088083Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:43.088270Z | Debug | Hover request at position 5:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:43.088375Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:43.088385Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:43.088411Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:43.088421Z | Debug | explicit-fixity: Rule Failed: GetHieAst
[I 2024-03-04 15:59:43.172 ServerApp] Adapting from protocol version 5.0 (kernel 3c07fb5e-8f7c-4b91-9bfa-9e8d7c8359cf) to 5.3 (client).
[I 2024-03-04 15:59:43.173 ServerApp] Connecting to kernel 3c07fb5e-8f7c-4b91-9bfa-9e8d7c8359cf.
[I 2024-03-04 15:59:43.186 ServerApp] Adapting from protocol version 5.0 (kernel 3c07fb5e-8f7c-4b91-9bfa-9e8d7c8359cf) to 5.3 (client).
[I 2024-03-04 15:59:43.187 ServerApp] Connecting to kernel 3c07fb5e-8f7c-4b91-9bfa-9e8d7c8359cf.
[I 2024-03-04 15:59:43.203 ServerApp] Adapting from protocol version 5.0 (kernel 3c07fb5e-8f7c-4b91-9bfa-9e8d7c8359cf) to 5.3 (client).
[I 2024-03-04 15:59:43.207 ServerApp] Connecting to kernel 3c07fb5e-8f7c-4b91-9bfa-9e8d7c8359cf.
2024-03-04T05:59:43.212117Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:43.212276Z | Debug | Hover request at position 7:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:43.212359Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:43.212360Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:43.212456Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:43.212460Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:43.313910Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:43.314141Z | Debug | Hover request at position 8:36 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:43.314261Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:43.314270Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:43.314361Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:43.314372Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:45.474394Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:45.474727Z | Debug | Hover request at position 7:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:45.474731Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:45.474827Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:45.475187Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:45.475245Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:45.590609Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:45.591087Z | Debug | Hover request at position 5:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:45.591288Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:45.591293Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:45.591648Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:45.591748Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:45.768304Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:45.768668Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:45.768857Z | Debug | Hover request at position 3:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:45.768944Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:45.769461Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:45.769595Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:46.573988Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:46.574444Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:46.574445Z | Debug | Hover request at position 5:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:46.574472Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:46.575234Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:46.575419Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:47.274292Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:47.274641Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:47.274742Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:47.274832Z | Debug | Hover request at position 7:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:47.275634Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:47.275682Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:47.365684Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:47.366037Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:47.366124Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:47.366167Z | Debug | Hover request at position 8:36 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:47.367137Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:47.367145Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:47.981826Z | Debug | DocumentHighlight request at position 8:36 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:47.982387Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:48.561105Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:48.561135Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:48.561402Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:48.562546Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:48.813268Z | Debug | DocumentHighlight request at position 9:2 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:48.813776Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:49.353691Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:49.353713Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:49.354121Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:49.356221Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:49.604314Z | Debug | DocumentHighlight request at position 10:2 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:49.604879Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:50.066014Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:50.066043Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:50.066692Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:50.070370Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:50.316571Z | Debug | DocumentHighlight request at position 10:3 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:50.317012Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:50.417818Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:50.417905Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:50.418227Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:50.421851Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:50.604725Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:50.604798Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:50.605631Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:50.609593Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:50.855818Z | Debug | DocumentHighlight request at position 10:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:50.856301Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:50.895895Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:50.895984Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:50.896509Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:50.900684Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:51.015923Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:51.015972Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:51.016218Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:51.017424Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:51.145455Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:51.145496Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:51.146146Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:51.150377Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:51.395814Z | Debug | DocumentHighlight request at position 10:4 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:51.396247Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:51.475222Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:51.475306Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:51.475882Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:51.479525Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:51.639898Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:51.639900Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:51.640248Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:51.643807Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:51.828669Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:51.828780Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:51.829359Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:51.833411Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:51.958283Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:51.958284Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:51.958750Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:51.962744Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:52.100996Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:52.100999Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:52.101360Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:52.105397Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:52.145862Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:52.145950Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:52.146604Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:52.149640Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:52.399230Z | Debug | DocumentHighlight request at position 10:10 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:52.399709Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:52.556853Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:52.556872Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:52.557496Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:52.561425Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:53.036451Z | Debug | DocumentHighlight request at position 10:11 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:53.036885Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:53.158161Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:53.158188Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:53.158913Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:53.163316Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:53.407879Z | Debug | DocumentHighlight request at position 10:12 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:53.408306Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:53.497045Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:53.497059Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:53.497911Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:53.502324Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:53.747570Z | Debug | DocumentHighlight request at position 10:13 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:53.748051Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:54.677289Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:54.677317Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:54.677434Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:54.678808Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:54.809444Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:54.809369Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:54.809847Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:54.813638Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:55.059631Z | Debug | DocumentHighlight request at position 10:15 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:55.060071Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:55.160962Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:55.160962Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:55.161518Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:55.165017Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:55.347319Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:55.347441Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:55.347925Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:55.351580Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:55.548653Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:55.548732Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:55.549388Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:55.552929Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:55.666154Z | Debug | Finished build session
AsyncCancelled
2024-03-04T05:59:55.666166Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T05:59:55.666719Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:55.670498Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T05:59:55.920278Z | Debug | DocumentHighlight request at position 10:15 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:55.920741Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:56.194775Z | Debug | LOOKUP PERSISTENT FOR: LocalCompletions
2024-03-04T05:59:56.194877Z | Debug | LOOKUP PERSISTENT FOR: GetParsedModule
2024-03-04T05:59:56.195367Z | Debug | Finished: C:LocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:56.195475Z | Debug | LOOKUP PERSISTENT FOR: NonLocalCompletions
2024-03-04T05:59:56.195539Z | Debug | Finished: C:NonLocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:56.195906Z | Debug | LOOKUP PERSISTENT FOR: GetBindings
2024-03-04T05:59:56.196084Z | Debug | Finished: C:GetParsedModule:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:56.196274Z | Debug | Finished: C:GetBindings:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:56.196770Z | Debug | Finished: Completion Took: 0.00s
2024-03-04T05:59:56.196852Z | Debug | LOOKUP PERSISTENT FOR: GhcSession
2024-03-04T05:59:56.196954Z | Debug | Finished: C:GhcSession:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:56.197364Z | Debug | Finished: C:GetModSummaryWithoutTimestamps:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:56.197547Z | Debug | Finished:  Took: 0.00s
2024-03-04T05:59:59.522503Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:59.522862Z | Debug | Hover request at position 8:36 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:59.523013Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:59.523395Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:59.523429Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:59.523662Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:59.669045Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T05:59:59.669394Z | Debug | Hover request at position 10:15 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T05:59:59.669532Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:59.669532Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T05:59:59.669817Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T05:59:59.669843Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:07.869550Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:00:07.869672Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:07.869681Z | Debug | Hover request at position 8:34 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:07.869714Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:07.870020Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:07.870030Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:00:07.965893Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:00:07.966253Z | Debug | Hover request at position 8:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:07.966389Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:07.966389Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:07.966570Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:07.966585Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:00:08.071851Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:00:08.072213Z | Debug | Hover request at position 8:27 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:08.072474Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:08.072915Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:08.073012Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:08.073140Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:00:08.174176Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:00:08.174535Z | Debug | Hover request at position 7:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:08.174895Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:00:08.174903Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:08.174946Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:08.174981Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:08.277601Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:00:08.277906Z | Debug | Hover request at position 8:36 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:08.277921Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:08.278011Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:08.278200Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:08.278231Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:00:11.754004Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:00:11.754399Z | Debug | Hover request at position 1:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:11.754676Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:11.754738Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:11.754745Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:11.754753Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:00:11.825410Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:00:11.825768Z | Debug | Hover request at position 1:33 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:11.826045Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:11.826155Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:11.826166Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:00:11.826184Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:11.928663Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:00:11.928979Z | Debug | Hover request at position 1:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:11.929012Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:11.929015Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:11.929270Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:00:11.929339Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:25.927270Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:25.927274Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:25.927505Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:25.929170Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:26.179450Z | Debug | DocumentHighlight request at position 10:25 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:26.179870Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:26.464431Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:26.464453Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:26.464744Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:26.466333Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:26.717046Z | Debug | DocumentHighlight request at position 10:26 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:26.717671Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:27.451786Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:27.451816Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:27.452137Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:27.453878Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:27.568631Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:27.568714Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:27.569339Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:27.572796Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:27.724096Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:27.724123Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:27.724744Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:27.728255Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:27.973958Z | Debug | DocumentHighlight request at position 10:29 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:27.974659Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:28.183459Z | Debug | LOOKUP PERSISTENT FOR: LocalCompletions
2024-03-04T06:00:28.183703Z | Debug | Finished: C:LocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:28.183869Z | Debug | Finished: C:GetParsedModule:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:28.183920Z | Debug | Finished: C:NonLocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:28.184102Z | Debug | Finished: Completion Took: 0.00s
2024-03-04T06:00:28.184384Z | Debug | Finished: C:GetBindings:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:28.184662Z | Debug | Finished: C:GetModSummaryWithoutTimestamps:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:28.184680Z | Debug | Finished: C:GhcSession:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:28.184722Z | Debug | Finished:  Took: 0.00s
2024-03-04T06:00:28.737313Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:28.737356Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:28.737586Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:28.739169Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:28.989905Z | Debug | DocumentHighlight request at position 10:38 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:28.990642Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:32.613769Z | Info | Live bytes: 22.14MB Heap size: 579.86MB
2024-03-04T06:00:36.038254Z | Debug | DocumentHighlight request at position 9:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:36.038705Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:37.078292Z | Debug | DocumentHighlight request at position 1:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:37.078907Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:37.157330Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:37.157339Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:37.157828Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:37.161480Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:37.887803Z | Debug | DocumentHighlight request at position 1:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:37.888300Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:38.195733Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:38.195759Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:38.196069Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:38.200247Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:38.446346Z | Debug | DocumentHighlight request at position 2:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:38.446823Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:39.258368Z | Debug | DocumentHighlight request at position 1:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:39.258776Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:39.672772Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:39.672707Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:39.673130Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:39.677131Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:39.811541Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:39.811709Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:39.812290Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:39.816483Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:39.993199Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:39.993299Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:39.993821Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:39.997506Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:40.043482Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:40.043509Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:40.044107Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:40.047997Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:40.152427Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:40.152451Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:40.153183Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:40.157118Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:40.325469Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:40.325517Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:40.326260Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:40.330137Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:40.502001Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:40.502026Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:40.502660Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:40.506574Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:40.755939Z | Debug | DocumentHighlight request at position 1:8 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:40.756618Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:41.990271Z | Debug | DocumentHighlight request at position 1:8 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:41.990752Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:42.229839Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:42.229850Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:42.230118Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:42.231327Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:42.481872Z | Debug | DocumentHighlight request at position 1:9 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:42.482405Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:45.647077Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:45.647082Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:45.647484Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:45.649285Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:45.899453Z | Debug | DocumentHighlight request at position 1:10 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:45.899941Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:46.343806Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:46.343849Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:46.344475Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:46.348323Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:46.557391Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:46.557417Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:46.558343Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:46.561938Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:46.807199Z | Debug | DocumentHighlight request at position 1:12 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:46.807623Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:48.204539Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:48.204559Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:48.204741Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:48.206186Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:48.456389Z | Debug | DocumentHighlight request at position 1:13 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:48.456834Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:48.925834Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:48.925916Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:48.926016Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:48.927570Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:49.179314Z | Debug | DocumentHighlight request at position 1:14 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:49.179756Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:49.743233Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:49.743269Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:49.743565Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:49.744949Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:49.896889Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:49.896931Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:49.897189Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:49.898972Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:50.064768Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:50.064806Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:50.065612Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:50.069708Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:50.271382Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:50.271401Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:50.272348Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:50.284660Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:50.522890Z | Debug | DocumentHighlight request at position 1:18 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:50.523309Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:50.548021Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:50.548040Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:50.548878Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:50.552520Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:50.797686Z | Debug | DocumentHighlight request at position 1:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:50.798238Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:51.133341Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:51.133371Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:51.133811Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:51.135649Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:51.384757Z | Debug | DocumentHighlight request at position 1:20 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:51.385199Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:51.612734Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:51.612883Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:51.613462Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:51.618204Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:51.863679Z | Debug | DocumentHighlight request at position 1:21 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:51.864137Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:52.091632Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:52.091726Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:52.092318Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:52.095998Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:52.248097Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:52.248127Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:52.248570Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:52.252550Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:52.407655Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:52.407691Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:52.407991Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:52.411483Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:52.605599Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:52.605612Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:52.606126Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:52.609376Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:52.859887Z | Debug | DocumentHighlight request at position 1:25 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:52.860494Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:55.444600Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:55.444660Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:55.444901Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:55.446283Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:55.687819Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:55.687953Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:55.688480Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:55.692109Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:55.809765Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:55.809766Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:55.810166Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:55.813824Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:56.060243Z | Debug | DocumentHighlight request at position 1:28 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:56.060647Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:56.152698Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:56.152830Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:56.153589Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:56.157007Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:56.373671Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:00:56.373767Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:00:56.374412Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:56.377687Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:00:56.624042Z | Debug | DocumentHighlight request at position 1:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:56.624564Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:57.232718Z | Debug | DocumentHighlight request at position 2:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:57.233236Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:58.274265Z | Debug | DocumentHighlight request at position 12:38 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:58.274741Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:58.705606Z | Debug | DocumentHighlight request at position 11:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:58.706295Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:00:59.219397Z | Debug | DocumentHighlight request at position 12:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:00:59.219849Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:00.946704Z | Debug | DocumentHighlight request at position 12:11 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:00.947232Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:01.996569Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:01.996606Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:01.996742Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:01.997968Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:02.322019Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:02.322102Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:02.322814Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:02.325683Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:02.572770Z | Debug | DocumentHighlight request at position 12:13 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:02.573332Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:02.884232Z | Debug | DocumentHighlight request at position 12:13 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:02.884803Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:02.889046Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:02.889059Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:02.889400Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:02.890994Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:03.141325Z | Debug | DocumentHighlight request at position 12:14 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:03.141797Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:03.346593Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:03.346655Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:03.346955Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:03.351215Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:03.597514Z | Debug | DocumentHighlight request at position 12:15 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:03.597992Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:03.966630Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:03.966711Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:03.967014Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:03.969544Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:04.126542Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:04.126561Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:04.127134Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:04.130868Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:04.346419Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:04.346471Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:04.347151Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:04.350808Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:04.596030Z | Debug | DocumentHighlight request at position 12:18 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:04.596627Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:04.720314Z | Debug | Finished: C:GetParsedModule:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:04.720357Z | Debug | Finished: C:NonLocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:04.720759Z | Debug | Finished: Completion Took: 0.00s
2024-03-04T06:01:04.720942Z | Debug | Finished: C:LocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:04.721101Z | Debug | Finished: C:GetBindings:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:04.721260Z | Debug | Finished: C:GhcSession:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:04.721419Z | Debug | Finished: C:GetModSummaryWithoutTimestamps:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:04.721524Z | Debug | Finished:  Took: 0.00s
2024-03-04T06:01:05.261523Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:05.261580Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:05.261858Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:05.263399Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:05.513519Z | Debug | DocumentHighlight request at position 12:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:05.514032Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:05.741416Z | Debug | Finished: C:NonLocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:05.741482Z | Debug | Finished: C:GetParsedModule:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:05.741493Z | Debug | Finished: Completion Took: 0.00s
2024-03-04T06:01:05.742005Z | Debug | Finished: C:GhcSession:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:05.742248Z | Debug | Finished: C:GetModSummaryWithoutTimestamps:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:05.742525Z | Debug | Finished: C:LocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:05.742540Z | Debug | Finished: C:GetBindings:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:05.742668Z | Debug | Finished:  Took: 0.00s
2024-03-04T06:01:10.314666Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:10.314702Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:10.315433Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:10.319410Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:10.564531Z | Debug | DocumentHighlight request at position 12:18 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:10.565068Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:10.694528Z | Debug | Finished: C:GetParsedModule:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:10.694536Z | Debug | Finished: C:NonLocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:10.694980Z | Debug | Finished: C:LocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:10.695030Z | Debug | Finished: Completion Took: 0.00s
2024-03-04T06:01:10.695210Z | Debug | Finished: C:GetBindings:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:10.695350Z | Debug | Finished: C:GetModSummaryWithoutTimestamps:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:10.695366Z | Debug | Finished:  Took: 0.00s
2024-03-04T06:01:10.695413Z | Debug | Finished: C:GhcSession:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:11.834315Z | Debug | Finished: Completion Took: 0.00s
2024-03-04T06:01:11.834402Z | Debug | Finished: C:NonLocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:11.834402Z | Debug | Finished: C:LocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:11.834412Z | Debug | Finished: C:GetParsedModule:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:11.834624Z | Debug | Finished: C:GetBindings:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:11.834731Z | Debug | Finished: C:GhcSession:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:11.834742Z | Debug | Finished:  Took: 0.00s
2024-03-04T06:01:11.834773Z | Debug | Finished: C:GetModSummaryWithoutTimestamps:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:12.260857Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:12.260900Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:12.261587Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:12.265059Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:12.442025Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:12.442087Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:12.442893Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:12.446627Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:12.623538Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:12.623539Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:12.623927Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:12.628099Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:12.879226Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:12.879262Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:12.879771Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:12.883819Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:13.070626Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:13.070677Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:13.071253Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:13.074827Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:13.208532Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:13.208616Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:13.209112Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:13.213162Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:13.457241Z | Debug | DocumentHighlight request at position 12:18 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:13.457882Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:13.738960Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:13.738973Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:13.739078Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:13.740551Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:13.990588Z | Debug | DocumentHighlight request at position 12:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:13.991221Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:13.999606Z | Debug | Finished: C:GetParsedModule:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:14.000120Z | Debug | Finished: C:NonLocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:14.000687Z | Debug | Finished: Completion Took: 0.00s
2024-03-04T06:01:14.000821Z | Debug | Finished: C:LocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:14.000864Z | Debug | Finished: C:GetBindings:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:14.001141Z | Debug | Finished: C:GhcSession:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:14.001235Z | Debug | Finished:  Took: 0.00s
2024-03-04T06:01:14.001335Z | Debug | Finished: C:GetModSummaryWithoutTimestamps:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:14.248959Z | Debug | DocumentHighlight request at position 12:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:14.249398Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:14.818519Z | Debug | Finished: Completion Took: 0.00s
2024-03-04T06:01:14.818519Z | Debug | Finished: C:NonLocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:14.818583Z | Debug | Finished: C:GetParsedModule:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:14.818587Z | Debug | Finished: C:LocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:14.818904Z | Debug | Finished: C:GetBindings:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:14.819113Z | Debug | Finished: C:GetModSummaryWithoutTimestamps:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:14.819120Z | Debug | Finished:  Took: 0.00s
2024-03-04T06:01:14.819194Z | Debug | Finished: C:GhcSession:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:15.081685Z | Debug | Finished: Completion Took: 0.00s
2024-03-04T06:01:15.081784Z | Debug | Finished: C:LocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:15.081793Z | Debug | Finished: C:NonLocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:15.081800Z | Debug | Finished: C:GetParsedModule:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:15.082103Z | Debug | Finished: C:GetBindings:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:15.082136Z | Debug | Finished: C:GetModSummaryWithoutTimestamps:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:15.082175Z | Debug | Finished: C:GhcSession:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:15.082243Z | Debug | Finished:  Took: 0.00s
2024-03-04T06:01:15.296221Z | Debug | Finished: C:GetBindings:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:15.296222Z | Debug | Finished: C:GetParsedModule:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:15.296233Z | Debug | Finished: C:LocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:15.296245Z | Debug | Finished: C:NonLocalCompletions:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:15.296597Z | Debug | Finished: Completion Took: 0.00s
2024-03-04T06:01:15.296887Z | Debug | Finished:  Took: 0.00s
2024-03-04T06:01:15.296915Z | Debug | Finished: C:GetModSummaryWithoutTimestamps:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:15.296961Z | Debug | Finished: C:GhcSession:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:17.799309Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:17.799646Z | Debug | Hover request at position 12:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:17.800141Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:17.800252Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:17.800291Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:17.800591Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:17.921544Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:17.921830Z | Debug | Hover request at position 3:33 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:17.921918Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:17.921963Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:17.922104Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:17.922171Z | Debug | explicit-fixity: Rule Failed: GetHieAst
[I 2024-03-04 16:01:20.108 ServerApp] Saving file at /notebooks/test.hs
2024-03-04T06:01:20.140775Z | Debug | Set files of interest to: fromList [(NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs",OnDisk)]
2024-03-04T06:01:20.141134Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:20.141143Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:20.141383Z | Debug | Saved text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:20.143045Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:20.143375Z | Info | Could not identify reverse dependencies for NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:20.143453Z | Debug | Finished: ParentTC Took: 0.00s
2024-03-04T06:01:22.214816Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:22.215033Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:22.215092Z | Debug | Hover request at position 7:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:22.215247Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:22.215633Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:22.215687Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:22.714977Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:22.715308Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:22.715320Z | Debug | Hover request at position 9:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:22.715367Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:22.716092Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:22.716171Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:22.786695Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:22.787043Z | Debug | Hover request at position 12:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:22.787107Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:22.787157Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:22.787348Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:22.787395Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:23.414869Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:23.415134Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:23.415276Z | Debug | Hover request at position 10:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:23.415340Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:23.415778Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:23.415813Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:23.513953Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:23.514351Z | Debug | Hover request at position 10:29 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:23.514403Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:23.514405Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:23.514683Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:23.514719Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:24.893353Z | Debug | DocumentHighlight request at position 11:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:24.893809Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:25.121763Z | Debug | Set files of interest to: fromList [(NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs",Modified {firstOpen = False})]
2024-03-04T06:01:25.122743Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:25.122755Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:25.123294Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:25.126895Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:25.373208Z | Debug | DocumentHighlight request at position 11:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:25.373635Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:25.678728Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:25.678941Z | Debug | Hover request at position 10:29 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:25.679003Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:25.679294Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:25.679332Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:25.679425Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:25.735085Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:25.735467Z | Debug | Hover request at position 7:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:25.735663Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:25.735738Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:25.735791Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:25.735847Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:25.838387Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:25.838752Z | Debug | Hover request at position 3:33 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:25.838937Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:25.838958Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:25.839184Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:25.839250Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:25.941655Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:25.942023Z | Debug | Hover request at position 1:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:25.942036Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:25.942036Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:25.942410Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:25.942424Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:26.340189Z | Debug | DocumentHighlight request at position 1:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:26.340802Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:26.861897Z | Debug | DocumentHighlight request at position 2:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:26.862522Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:27.656265Z | Debug | DocumentHighlight request at position 1:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:27.656701Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:28.027601Z | Debug | DocumentHighlight request at position 1:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:28.028260Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:28.164276Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:28.164378Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:28.165105Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:28.168896Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:28.416051Z | Debug | DocumentHighlight request at position 1:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:28.416479Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:28.634533Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:28.637733Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.01s
2024-03-04T06:01:28.637981Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:28.639560Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:28.882361Z | Debug | DocumentHighlight request at position 1:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:28.882830Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:29.690012Z | Debug | DocumentHighlight request at position 1:33 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:29.690521Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:30.047395Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:30.047701Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:30.047812Z | Debug | Hover request at position 3:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:30.048045Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:30.048603Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:30.048698Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:30.564751Z | Debug | DocumentHighlight request at position 4:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:30.565253Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:30.930768Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:30.931055Z | Debug | Hover request at position 5:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:30.931118Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:30.931166Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:30.931333Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:30.931386Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:31.037383Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:31.037493Z | Debug | Hover request at position 8:24 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:31.037521Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:31.037590Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:31.037600Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:31.037601Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:31.143152Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:31.143570Z | Debug | Hover request at position 8:22 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:31.143755Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:31.143772Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:31.143982Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:31.144038Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:31.688090Z | Debug | DocumentHighlight request at position 8:22 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:31.688497Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:32.585026Z | Debug | DocumentHighlight request at position 9:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:32.585437Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:32.618549Z | Info | Live bytes: 22.14MB Heap size: 579.86MB
2024-03-04T06:01:32.929893Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:32.930214Z | Debug | Hover request at position 8:24 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:32.930280Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:32.930301Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:32.930631Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:32.930690Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:33.076447Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:33.076728Z | Debug | Hover request at position 8:28 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:33.076770Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:33.076864Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:33.077053Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:33.077117Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:33.730103Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:33.730400Z | Debug | Hover request at position 8:29 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:33.730672Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:33.730697Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:33.730857Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:33.730930Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:33.796913Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:33.797196Z | Debug | Hover request at position 8:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:33.797293Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:33.797304Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:33.797583Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:33.797599Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:34.363559Z | Debug | DocumentHighlight request at position 8:30 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:34.363998Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:34.696554Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:34.696834Z | Debug | Hover request at position 8:31 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:34.696923Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:34.697061Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:34.697259Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:34.697290Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:34.808913Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:34.809201Z | Debug | Hover request at position 7:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:34.809302Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:34.809326Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:34.809463Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:34.809477Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:35.496591Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:35.496927Z | Debug | Hover request at position 8:33 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:35.496979Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:35.497036Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:35.497336Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:35.497357Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:35.622612Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:35.622977Z | Debug | Hover request at position 8:34 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:35.623245Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:35.623337Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:35.623347Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:35.623406Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:36.130222Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:36.130571Z | Debug | Hover request at position 8:31 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:36.130859Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:36.131026Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:36.131042Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:36.131067Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:36.234337Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:36.234688Z | Debug | Hover request at position 7:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:36.234970Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:36.235148Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:36.235211Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:36.235301Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:36.651582Z | Debug | DocumentHighlight request at position 7:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:36.652242Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:36.909047Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:36.909054Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:36.909327Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:36.910878Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:37.160967Z | Debug | DocumentHighlight request at position 7:16 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:37.161367Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:38.495672Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:38.495961Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:38.496139Z | Debug | Hover request at position 7:16 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:38.496256Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:38.496839Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:38.496887Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:38.596245Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:38.596601Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:38.596600Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:38.596664Z | Debug | Hover request at position 5:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:38.597586Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:38.597587Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:39.313496Z | Debug | DocumentHighlight request at position 5:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:39.314178Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:40.762157Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:40.762509Z | Debug | Hover request at position 7:16 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:40.762758Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:40.762939Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:40.763244Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:40.763321Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:40.907758Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:40.908125Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:40.908155Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:40.908169Z | Debug | Hover request at position 7:14 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:40.909029Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:40.909105Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:41.213171Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:41.213575Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:41.213577Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:41.213665Z | Debug | Hover request at position 7:15 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:41.214761Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:41.214888Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:42.661622Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:42.661991Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:42.662026Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:42.662129Z | Debug | Hover request at position 7:16 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:42.663080Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:42.663146Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:43.141315Z | Debug | DocumentHighlight request at position 7:16 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:43.141724Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:43.568868Z | Debug | Finished build session
AsyncCancelled
2024-03-04T06:01:43.568900Z | Debug | Restarting build session due to /home/le-moski/Repos/IHaskell/notebooks/test.hs (modified)
Action Queue: []
Keys: [ IsFileOfInterest; /home/le-moski/Repos/IHaskell/notebooks/test.hs
      , GetModificationTime; /home/le-moski/Repos/IHaskell/notebooks/test.hs ]
Aborting previous build session took 0.00s
2024-03-04T06:01:43.569237Z | Debug | Modified text document: file:///home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:43.570911Z | Debug | hlint: Getting hlint ideas for  NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:43.820647Z | Debug | DocumentHighlight request at position 7:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:43.821209Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:44.547683Z | Debug | DocumentHighlight request at position 6:1 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:44.548124Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:45.345396Z | Debug | DocumentHighlight request at position 5:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:45.346002Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:46.878051Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:46.878431Z | Debug | Hover request at position 5:14 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:46.878463Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:46.878888Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:46.879152Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:46.879364Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:47.003456Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:47.003774Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:47.003835Z | Debug | Hover request at position 5:13 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:47.003844Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:47.004466Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:47.004558Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:47.194716Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:47.195019Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:47.195032Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:47.195237Z | Debug | Hover request at position 5:8 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:47.196083Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:47.196210Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:47.735407Z | Debug | DocumentHighlight request at position 5:8 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:47.735811Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.146094Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:48.146412Z | Debug | Hover request at position 5:10 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:48.146519Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.146537Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.146709Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:48.146676Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.226255Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:48.226605Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.226641Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.227078Z | Debug | Hover request at position 8:18 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:48.228176Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:48.228201Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.528259Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:48.528588Z | Debug | Hover request at position 8:21 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:48.528600Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.528615Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.528945Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.529018Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:48.634851Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:48.635186Z | Debug | Hover request at position 8:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:48.635201Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.635275Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.635563Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:48.635610Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.738106Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:48.738440Z | Debug | Hover request at position 8:18 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:48.738540Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.738617Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.738853Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:48.739011Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:50.194679Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:50.194998Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:50.195050Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:50.195073Z | Debug | Hover request at position 8:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:50.196025Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:50.196066Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:50.261581Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:50.261820Z | Debug | Hover request at position 8:16 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:50.261859Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:50.261859Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:50.262052Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:50.262090Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:50.510837Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:50.511198Z | Debug | Hover request at position 8:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:50.511858Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:50.511900Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:50.512146Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:50.512172Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:50.568902Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:50.569238Z | Debug | Hover request at position 8:18 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:50.569271Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:50.569271Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:50.569683Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:50.569761Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:53.080645Z | Debug | Definition request at position 8:18 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:53.081113Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:54.827965Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:54.828321Z | Debug | Hover request at position 8:27 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:54.828518Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:54.828593Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:54.828911Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:54.828963Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:54.931095Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:54.931408Z | Debug | Hover request at position 7:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:54.931515Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:54.931557Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:54.931771Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:54.931805Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:55.161560Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:55.161912Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:55.161971Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:55.162141Z | Debug | Hover request at position 8:26 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:55.163145Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:55.163221Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:55.244589Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:55.244927Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:55.244949Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:55.244976Z | Debug | Hover request at position 8:27 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:55.245819Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:55.245875Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:56.177304Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:56.177736Z | Debug | Hover request at position 8:26 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:56.177786Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.177824Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.178173Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.178262Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:56.256288Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:56.256626Z | Debug | Hover request at position 7:17 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:56.256988Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.257014Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.257073Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.257152Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:56.362449Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:56.362842Z | Debug | Hover request at position 5:16 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:56.363142Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.363174Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.363175Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:56.363194Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.462545Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:56.462907Z | Debug | Hover request at position 5:14 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:56.463088Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.463087Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.463380Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:56.463421Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.661231Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:56.661759Z | Debug | Hover request at position 5:9 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:56.661859Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.661900Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.662208Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:56.662245Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.771711Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:56.772054Z | Debug | Hover request at position 5:8 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:56.772076Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.772101Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:56.772453Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:56.772507Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:58.756658Z | Debug | References request at position 5:8 in file: NormalizedFilePath "/home/le-moski/Repos/IHaskell/notebooks/test.hs"
2024-03-04T06:01:58.757533Z | Debug | Finished: references Took: 0.00s
2024-03-04T06:01:59.927003Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:01:59.927331Z | Debug | Hover request at position 8:32 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:01:59.927362Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:59.927407Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:01:59.927709Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:01:59.927753Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:02:00.020458Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:02:00.020744Z | Debug | Hover request at position 5:19 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:02:00.020796Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:02:00.020816Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:02:00.021044Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:02:00.021045Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:02:00.355034Z | Debug | GhcIde.hover entered (ideLogger)
2024-03-04T06:02:00.355355Z | Debug | Hover request at position 1:33 in file: /home/le-moski/Repos/IHaskell/notebooks/test.hs
2024-03-04T06:02:00.355419Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:02:00.355419Z | Debug | Finished: C:GetFixity:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
2024-03-04T06:02:00.355664Z | Debug | explicit-fixity: Rule Failed: GetHieAst
2024-03-04T06:02:00.355785Z | Debug | Finished: C:GetHieAst:/home/le-moski/Repos/IHaskell/notebooks/test.hs Took: 0.00s
^C[I 2024-03-04 16:02:03.195 ServerApp] interrupted
[I 2024-03-04 16:02:03.196 ServerApp] Serving notebooks from local directory: /home/le-moski/Repos/IHaskell
    1 active kernel
    Jupyter Server 2.12.5 is running at:
    http://localhost:8888/lab?token=e9f26b265eaf2cfbdfd49b5fb21fb7b841929c9f611c8344
        http://127.0.0.1:8888/lab?token=e9f26b265eaf2cfbdfd49b5fb21fb7b841929c9f611c8344
Shutdown this Jupyter server (y/[n])? y
[C 2024-03-04 16:02:03.956 ServerApp] Shutdown confirmed
[I 2024-03-04 16:02:03.957 ServerApp] Shutting down 7 extensions
[I 2024-03-04 16:02:03.958 ServerApp] Shutting down 1 kernel
[I 2024-03-04 16:02:03.959 ServerApp] Kernel shutdown: 3c07fb5e-8f7c-4b91-9bfa-9e8d7c8359cf
Press Ctrl-C again to quit kernel.
[ble: elapsed 165.873s (CPU 23.7%)] jupyter lab --ContentsManager.allow_hidden=True --no-browser

In some time I'm gonna check out what happens if I add the test file to the cabal file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lang:haskell Issues related to Haskell language servers
Projects
None yet
Development

No branches or pull requests

2 participants