Skip to content

Commit

Permalink
fix: rogue log message
Browse files Browse the repository at this point in the history
  • Loading branch information
martastain committed Feb 17, 2025
1 parent 628e2d2 commit 2cedd37
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions api/tasks_folders/tasks_folders.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from typing import Annotated

from fastapi import APIRouter
from nxtools import logging

from ayon_server.access.utils import folder_access_list
from ayon_server.api.dependencies import CurrentUser, ProjectName
Expand Down Expand Up @@ -62,7 +61,6 @@ async def query_tasks_folders(

facl = await folder_access_list(user, project_name, "read")

logging.debug("query", query)
async for row in Postgres.iterate(query):
if facl is not None and row["folder_id"] not in facl:
continue
Expand Down

0 comments on commit 2cedd37

Please sign in to comment.