We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ログイン結果の出力 console.log(await atcoder.login() ? "OK" : "login failed"); 等の出力は 成功時も失敗時も同じく標準出力console.logが使用されていますが、 すでにログインしている場合の表示 console.error("you logged-in already"); のように、失敗時は標準エラー出力である、console.errorを利用していただきたいです。
console.log(await atcoder.login() ? "OK" : "login failed");
console.log
console.error("you logged-in already");
console.error
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ログイン結果の出力
console.log(await atcoder.login() ? "OK" : "login failed");
等の出力は
成功時も失敗時も同じく標準出力
console.log
が使用されていますが、すでにログインしている場合の表示
console.error("you logged-in already");
のように、失敗時は標準エラー出力である、
console.error
を利用していただきたいです。The text was updated successfully, but these errors were encountered: