I would like to plot the function f(x) = sin(1/x) and it should look like this. I get this so far:

You might notice, that my image doesn't look as good as the linked one because of the axis.
How can I get a logarithmic axis for my plot?
Why does it currently produce an error with a logarithmic axis?
\documentclass{article}
\usepackage[pdftex,active,tightpage]{preview}
\setlength\PreviewBorder{2mm}
\usepackage{pgfplots}
\usepackage{tikz}
\usetikzlibrary{arrows, positioning, calc, intersections}
\begin{document}
\begin{preview}
\begin{tikzpicture}
\begin{axis}[
axis x line=middle,
axis y line=middle,
width=15cm, height=15cm, % size of the image
grid = major,
grid style={dashed, gray!30},
%xmode=log,log basis x=10, % <- doesn't work:
% ! Missing number, treated as zero.
% <to be read again>
% p
% l.33 ..., red, thick,samples=500] {sin(deg(1/x))};
%
% ?
% ! Emergency stop.
% <to be read again>
% p
% l.33 ..., red, thick,samples=500] {sin(deg(1/x))};
%
% ! ==> Fatal error occurred, no output PDF file produced!
%ymode=log,log basis y=10,
xmin=-0.7000, % start the diagram at this x-coordinate
xmax=-0.0062, % end the diagram at this x-coordinate
ymin=-1, % start the diagram at this y-coordinate
ymax= 1, % end the diagram at this y-coordinate
axis background/.style={fill=white},
ylabel=y,
xlabel=x,
%xticklabels={,,},
%yticklabels={,,},
tick align=outside,
tension=0.08]
\addplot[domain=-0.700:-0.0062, red, thick,samples=500] {sin(deg(1/x))};
\end{axis}
\end{tikzpicture}
\end{preview}
\end{document}
If you plot it with a logarithmic y-axis it looks ... hmm ... lets call it interesting.
The latest LaTeX-Code of this plot can be found on GitHub.

