How to disable "Precompiling XXX [top-level] ... " messages?

The example below produces message:

[ Info: Precompiling A [top-level] (cache misses: include_dependency fsize change (2))

Is there a way to disable precompe cache for module A or at least hide that message?

Example main.jl:

using Revise
push!(LOAD_PATH, ".")

using A
@show A.a()

A.jl

module A
a() = "a"
end

P.S. I’m trying to write modular julia code with Revise in a simple way, without using real packages, for my use I don’t need full packages.