about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2024-10-05T12·20+0200
committerProfpatsch <mail@profpatsch.de>2024-10-05T13·49+0000
commitf4d2d3ccece96c14e0f5dfcfe8515756029e650d (patch)
tree1237c849e6efb0d19a8c1814de197b12e9b32ab2 /users
parent05c7230127f59e3ef1fad2c8cb7e6769ab5eec08 (diff)
fix(users/Profpatsch/lyric/ext): print upload message to log r/8773
Change-Id: I178077894eb78c9f9cb5da07c1be23b7dba6c7cb
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12576
Tested-by: BuildkiteCI
Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'users')
-rw-r--r--users/Profpatsch/lyric/extension/src/extension.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/users/Profpatsch/lyric/extension/src/extension.ts b/users/Profpatsch/lyric/extension/src/extension.ts
index 417dc42e1851..35f76f3fe0b4 100644
--- a/users/Profpatsch/lyric/extension/src/extension.ts
+++ b/users/Profpatsch/lyric/extension/src/extension.ts
@@ -533,8 +533,10 @@ async function uploadToLrclibDotNet() {
 
   if (res) {
     vscode.window.showInformationMessage('Lyrics successfully uploaded.');
+    channel_global.appendLine('Lyrics successfully uploaded.');
   } else {
     vscode.window.showErrorMessage('Failed to upload lyrics.');
+    channel_global.appendLine('Failed to upload lyrics.');
   }
 }