diff --git a/packages/cactus-common/src/main/typescript/index.ts b/packages/cactus-common/src/main/typescript/index.ts index 8f6c6cd3ca5..88e13735d94 100755 --- a/packages/cactus-common/src/main/typescript/index.ts +++ b/packages/cactus-common/src/main/typescript/index.ts @@ -1,2 +1,17 @@ export * from "./public-api"; export { IListenOptions, Servers } from "./servers"; +export const LogLevel = { + TRACE: "TRACE", + trace: "trace", + ERROR: "ERROR", + error: "error", + WARN: "WARN", + warn: "warn", + INFO: "INFO", + info: "info", + DEBUG: "DEBUG", + debug: "debug", + SILENT: "SILENT", + silent: "silent", +} as const; +export type LogLevelDesc = typeof LogLevel[keyof typeof LogLevel]; diff --git a/tools/custom-checks/get-all-tgz-path.ts b/tools/custom-checks/get-all-tgz-path.ts index d95bf71fb53..19d44af9638 100644 --- a/tools/custom-checks/get-all-tgz-path.ts +++ b/tools/custom-checks/get-all-tgz-path.ts @@ -58,8 +58,6 @@ export async function getAllTgzPath(): Promise { "packages/cactus-verifier-client/hyperledger-cactus-verifier-client-*.tgz", // link for issue ticket relating to this package: https://github.com/hyperledger-cacti/cacti/issues/3634 "packages/cactus-plugin-ledger-connector-polkadot/hyperledger-cactus-plugin-ledger-connector-polkadot-*.tgz", - // link for issue ticket relating to this package: https://github.com/hyperledger-cacti/cacti/issues/3635 - "packages/cactus-common/hyperledger-cactus-common-*.tgz", ], };