Remove bogus debug statements

This commit is contained in:
Maximilian Friedersdorff 2024-10-21 14:57:29 +01:00
parent ae5d38aa14
commit a0e0be1981

View file

@ -71,9 +71,6 @@ function M.get_file_url(
if string.find(M.repo_url, "bitbucket") then if string.find(M.repo_url, "bitbucket") then
file_page_url = string.format(bb_remote_format, M.repo_url, rev, file_path) file_page_url = string.format(bb_remote_format, M.repo_url, rev, file_path)
elseif string.find(M.repo_url, "forgejo") or string.find(M.repo_url, "gitea") then elseif string.find(M.repo_url, "forgejo") or string.find(M.repo_url, "gitea") then
utils.notify(file_path, vim.log.levels.INFO)
utils.notify(M.repo_url, vim.log.levels.INFO)
utils.notify(rev, vim.log.levels.INFO)
file_page_url = string.format(forgejo_remote_format, M.repo_url, rev, file_path) file_page_url = string.format(forgejo_remote_format, M.repo_url, rev, file_path)
else else
file_page_url = string.format(remote_format, M.repo_url, rev, file_path) file_page_url = string.format(remote_format, M.repo_url, rev, file_path)