Skip to content

Commit

Permalink
Revert "Log"
Browse files Browse the repository at this point in the history
This reverts commit d8e039a.
  • Loading branch information
katydecorah committed Dec 31, 2024
1 parent f8a5af7 commit bc0fb63
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -122031,8 +122031,6 @@ function cleanBook(options, book) {
const identifier = isLibrofm
? getLibrofmId(inputIdentifier)
: inputIdentifier;
// Github log "book"
(0,core.info)(`Book information: ${JSON.stringify(book, null, 2)}`);
return {
identifier,
identifiers: {
Expand Down
5 changes: 1 addition & 4 deletions src/providers/isbn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Isbn, { Book } from "@library-pals/isbn";
import { BookParams } from "..";
import { NewBook } from "../new-book";
import { formatDescription, getLibrofmId } from "../utils";
import { exportVariable, getInput, warning, info } from "@actions/core";
import { exportVariable, getInput, warning } from "@actions/core";

export async function getIsbn(
options: BookParams,
Expand Down Expand Up @@ -54,9 +54,6 @@ export function cleanBook(options: BookParams, book: Book): NewBook {
? getLibrofmId(inputIdentifier)
: inputIdentifier;

// Github log "book"
info(`Book information: ${JSON.stringify(book, null, 2)}`);

return {
identifier,
identifiers: {
Expand Down

0 comments on commit bc0fb63

Please sign in to comment.