joinPoint.getArgs()
);
Charset charset = AllureConfig.newInstance().getAttachmentsEncoding();
byte[] bytes = (result instanceof byte[]) ? (byte[]) result : result.toString().getBytes(charset);
Allure.LIFECYCLE.fire(new MakeAttachmentEvent(bytes, attachTitle, attachment.type()));
}
}