undo remove logger info

This commit is contained in:
Moriz Wahl 2023-03-23 18:40:03 +01:00
parent be978184c7
commit af0a4d7e57

View File

@ -304,6 +304,7 @@ export class TransactionResolver {
@Args() { identifier, amount, memo }: TransactionSendArgs,
@Ctx() context: Context,
): Promise<boolean> {
logger.info(`sendCoins(email=${email}, amount=${amount}, memo=${memo})`)
if (amount.lte(0)) {
throw new LogError('Amount to send must be positive', amount)
}