fix symbols in transacion name

This commit is contained in:
2025-11-09 13:02:04 -03:00
parent b305173b9d
commit 5474644580
4 changed files with 11 additions and 2 deletions

View File

@@ -10,7 +10,11 @@ import io
app = FastAPI()
logger = logging.getLogger(__name__)
logging.basicConfig(filename='rico-to-ghostfolio.log', level=logging.INFO)
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
datefmt="%Y-%m-%d %H:%M:%S",
)
@app.post("/brokerage")
async def convert_pdf(file: UploadFile = File(...)):