Hi,
I have this funny situation whereby I see my before_filter executing multiple times for one access.
My filter is called auth_user_filter and it logs using logger.info("Yada Yada Yada"). It gets set globally to run before all actions. When I access an action over my browser it prints the following (depending on what call it is)
The first call prints
Yada Yada Yada
The second call prints
Yada Yada Yada
Yada Yada Yada
The third call prints
Yada Yada Yada
Yada Yada Yada
Yada Yada Yada
And so on.
This only happens in development mode and I was wondering if anybody knows why?