A few things first:
If you use a pvalue cut off on TTEST results across the whole proteome most of your results will be false positives. For example, if you detected 8,000 proteins and did therefore did 8,000 tests, you will have around 400 false positives (8000*0.05). If you find 500 proteins p< 0.05, then 80% of them will be false positives. I suggest using FDR with a higher threshold than 0.05.
Instead of using a p-value < 0.05 from a t-test there are several other things you could try:
* The T-test is not generally suitable for proteomics data, which is count based (if its MS-MS anyway). You want to try one of the negative binomial based packages, like edgeR, DESeq or limma-voom that are usually used for RNAseq. This will probably give you better FDRs
* Failing that you could try an FDR threshold of 0.2 or 0.3 - yes 20%-30% of your hits will be false positives, but that is less than would be the case using a pvalue.
Bearing that in mind, there is no "correct" way to choose a log Fold Change threshold. Log Fold Change thresholds are used to find genes/proteins where the change is big enough to be biologically interesting - they are determining the biological merit, not statistical merit and are thus subjective.
However, it is true that larger log fold changes, particularly at higher expression levels, are more likely to be real than smaller ones, but you can't put a threshold and say "above this threshold is good, below this threshold is bad".
Proper use of the fold change threshold: The correct way to use a fold change threshold, in the absence of meaningful FDR thresholds, would be to not rely on hard thresholds in your downstream analyses. There are many biologically interesting questions you can ask using analyses that rely on ranking proteins, rather than dividing them into two categories (different and not different).
Finally, to put it bluntly, any reviewer than will accept log fold change threshold over an FDR one won't have anything useful to say about the position of that threshold anyway.